@@ -224,6 +224,7 @@ jobs:
224
224
platforms : ${{ matrix.platforms }}
225
225
tag : ${{ inputs.release_version || '' }}
226
226
dry_run : ${{ inputs.dry_run || false}}
227
+ runner : ${{ github.repository_owner == 'nginx' && (inputs.is_production_release || (github.event_name == 'push' && github.ref == 'refs/heads/main')) && 'ubuntu-24.04-amd64' || 'ubuntu-24.04' }}
227
228
permissions :
228
229
contents : read # for docker/build-push-action to read repo content
229
230
security-events : write # for github/codeql-action/upload-sarif to upload SARIF results
@@ -240,6 +241,7 @@ jobs:
240
241
platforms : " linux/arm64, linux/amd64"
241
242
tag : ${{ inputs.release_version || '' }}
242
243
dry_run : ${{ inputs.dry_run || false }}
244
+ runner : ${{ github.repository_owner == 'nginx' && (inputs.is_production_release || (github.event_name == 'push' && github.ref == 'refs/heads/main')) && 'ubuntu-24.04-amd64' || 'ubuntu-24.04' }}
243
245
permissions :
244
246
contents : read # for docker/build-push-action to read repo content
245
247
security-events : write # for github/codeql-action/upload-sarif to upload SARIF results
0 commit comments