summaryrefslogtreecommitdiff
path: root/.github
diff options
context:
space:
mode:
authorChris Evich <cevich@redhat.com>2021-05-03 10:31:45 -0400
committerChris Evich <cevich@redhat.com>2021-05-03 10:56:34 -0400
commit9db9fa2a0838c16c91cbe37952a2b97e62832f73 (patch)
treedfdf6ee6a94bb4db44a59f39e6663651d19b90d2 /.github
parent697ec8f6f0ac8f251fd7f3f3bb5e21313ca62207 (diff)
downloadpodman-9db9fa2a0838c16c91cbe37952a2b97e62832f73.tar.gz
podman-9db9fa2a0838c16c91cbe37952a2b97e62832f73.tar.bz2
podman-9db9fa2a0838c16c91cbe37952a2b97e62832f73.zip
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>
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/multi-arch-build.yaml4
1 files changed, 3 insertions, 1 deletions
diff --git a/.github/workflows/multi-arch-build.yaml b/.github/workflows/multi-arch-build.yaml
index 2a86bab7e..0f8a3df7e 100644
--- a/.github/workflows/multi-arch-build.yaml
+++ b/.github/workflows/multi-arch-build.yaml
@@ -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 }}