Skip to content

Commit

Permalink
Fix
Browse files Browse the repository at this point in the history
  • Loading branch information
iambriccardo committed Jan 7, 2025
1 parent 02e3685 commit 649da9f
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -284,10 +284,10 @@ jobs:

strategy:
matrix:
image_name: ${{ fromJson(needs.build-setup.outputs.images) }}
image: ${{ fromJson(needs.build-setup.outputs.images) }}

env:
PLATFORMS: "${{ join(fromJSON(needs.build-setup.outputs.platforms), ',') }}"
PLATFORMS: "${{ join(fromJson(format('[{0}]', join(fromJson(needs.build-setup.outputs.targets).*.platform, ','))), ',') }}"
DOCKER_IMAGE: "ghcr.io/getsentry/${{ matrix.image.name }}"
REVISION: "${{ github.event.pull_request.head.sha || github.sha }}"

Expand Down Expand Up @@ -341,7 +341,7 @@ jobs:

strategy:
matrix:
image_name: [relay] # Don't publish relay-pop (for now)
image: [{"name": "relay", "features": "processing,crash-handler"}] # Don't publish relay-pop (for now)

if: ${{ (github.ref_name == 'master') }}

Expand Down Expand Up @@ -376,7 +376,7 @@ jobs:

strategy:
matrix:
image_name: ${{ fromJson(needs.build-setup.outputs.images) }}
image: ${{ fromJson(needs.build-setup.outputs.images) }}

# required for google auth
permissions:
Expand Down Expand Up @@ -427,7 +427,7 @@ jobs:

strategy:
matrix:
image_name: ${{ fromJson(needs.build-setup.outputs.images) }}
image: ${{ fromJson(needs.build-setup.outputs.images) }}

# required for google auth
permissions:
Expand Down

0 comments on commit 649da9f

Please sign in to comment.