mirror of
https://github.com/podman-container-tools/podman.git
synced 2026-09-12 10:37:54 +00: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:
parent
697ec8f6f0
commit
9db9fa2a08
1 changed files with 3 additions and 1 deletions
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 }}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue