We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 220c8b5 commit 81b48b5Copy full SHA for 81b48b5
.github/workflows/build.yml
@@ -228,7 +228,7 @@ jobs:
228
strategy:
229
matrix:
230
image: ${{ fromJSON(needs.setup.outputs.images) }}
231
- arch: ${{ github.event_name == 'workflow_call' && fromJSON('["amd64"]') || fromJSON('["amd64", "arm64"]') }}
+ arch: ${{ inputs.image_json && fromJSON('["amd64"]') || fromJSON('["amd64", "arm64"]') }}
232
fail-fast: false
233
name: 5 build (quickstart, ${{ matrix.image.tag }}, ${{ matrix.arch }})
234
runs-on: ${{ matrix.arch == 'arm64' && 'ubuntu-24.04-arm' || 'ubuntu-latest' }}
0 commit comments