mirror of
https://github.com/containers/podman.git
synced 2025-05-20 00:27:03 +08:00
Fix variable reference typo. in multi-arch image action
Bug introduced by #10150 Also, in case of failure of one matrix-leg, do not terminate execution of all others. There are many reasons why an item could fail (i.e. temporary networking problem). Since the job runs periodically, we can simply allow the subsequent run to cover for any missed images pushes due to sporadic job failures. Signed-off-by: Chris Evich <cevich@redhat.com>
This commit is contained in:
4
.github/workflows/multi-arch-build.yaml
vendored
4
.github/workflows/multi-arch-build.yaml
vendored
@ -24,6 +24,8 @@ jobs:
|
||||
|
||||
# build several images (upstream, testing, stable) in parallel
|
||||
strategy:
|
||||
# By default, failure of one matrix item cancels all others
|
||||
fail-fast: false
|
||||
matrix:
|
||||
# Builds are located under contrib/podmanimage/<source> directory
|
||||
source:
|
||||
@ -178,7 +180,7 @@ jobs:
|
||||
file: ./contrib/podmanimage/${{ matrix.source }}/Dockerfile
|
||||
platforms: ${{ env.PLATFORMS }}
|
||||
push: true
|
||||
tags: ${{ steps.podman_push.outputs.fqin }}
|
||||
tags: ${{ steps.podman_reg.outputs.fqin }}
|
||||
labels: |
|
||||
${{ env.LABELS }}
|
||||
|
||||
|
Reference in New Issue
Block a user