diff options
author | OpenShift Merge Robot <openshift-merge-robot@users.noreply.github.com> | 2021-04-26 19:52:54 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-04-26 19:52:54 -0400 |
commit | 5070ae3bced99087e8d18ec1df994ebe4502cdd1 (patch) | |
tree | 10f53701e72a98784a95dae6db04583e37f446e5 | |
parent | 2039be00d12afaab84659619c47a463cacb039f5 (diff) | |
parent | 17c82caac47a3e7f4b3dd22997bb6fb4cd6ffdb3 (diff) | |
download | podman-5070ae3bced99087e8d18ec1df994ebe4502cdd1.tar.gz podman-5070ae3bced99087e8d18ec1df994ebe4502cdd1.tar.bz2 podman-5070ae3bced99087e8d18ec1df994ebe4502cdd1.zip |
Merge pull request #10142 from cevich/fix_push_logic
[CI:DOCS] Fix logic for pushing stable multi-arch images
-rw-r--r-- | .github/workflows/multi-arch-build.yaml | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/.github/workflows/multi-arch-build.yaml b/.github/workflows/multi-arch-build.yaml index 41ef3f3a6..e4ab88544 100644 --- a/.github/workflows/multi-arch-build.yaml +++ b/.github/workflows/multi-arch-build.yaml @@ -77,7 +77,7 @@ jobs: docker://$PODMAN_QUAY_REGISTRY/stable | \ jq -r '.Tags[]') PUSH="false" - if fgrep -qx "$VERSION" <<<"$ALLTAGS"; then + if ! fgrep -qx "$VERSION" <<<"$ALLTAGS"; then PUSH="true" fi @@ -85,7 +85,7 @@ jobs: # Only push if version tag does not exist if [[ "$PUSH" == "true" ]]; then echo "Will push $FQIN" - echo "::set-output name=podman_push::${PUSH}" + echo "::set-output name=podman_push::true" echo "::set-output name=podman_fqin::${FQIN}" else echo "Not pushing, $FQIN already exists." @@ -97,7 +97,7 @@ jobs: docker://$CONTAINERS_QUAY_REGISTRY/podman | \ jq -r '.Tags[]') PUSH="false" - if fgrep -qx "$VERSION" <<<"$ALLTAGS"; then + if ! fgrep -qx "$VERSION" <<<"$ALLTAGS"; then PUSH="true" fi @@ -105,7 +105,7 @@ jobs: # Only push if version tag does not exist if [[ "$PUSH" == "true" ]]; then echo "Will push $FQIN" - echo "::set-output name=containers_push::${PUSH}" + echo "::set-output name=containers_push::true" echo "::set-output name=containers_fqin::$FQIN" else echo "Not pushing, $FQIN already exists." |