From 4916eaf7699b5be03c91f36ff09cae1df0da506f Mon Sep 17 00:00:00 2001 From: Andrew Azores Date: Tue, 7 Nov 2023 19:15:50 -0500 Subject: [PATCH] ci(image): correct expression condition syntax --- .github/workflows/push-ci.yaml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/push-ci.yaml b/.github/workflows/push-ci.yaml index d0ace9eb5..6bff08586 100644 --- a/.github/workflows/push-ci.yaml +++ b/.github/workflows/push-ci.yaml @@ -107,7 +107,7 @@ jobs: podman rmi ${{ env.CI_IMG }}:latest ${{ env.CI_IMG }}:dev ${{ env.CI_IMG }}:${{ env.IMAGE_VERSION }} continue-on-error: true - name: Build container images and manifest - if: ${{ matrix.java == '17' }} && ${{ github.repository_owner == 'cryostatio' }} + if: ${{ matrix.java == '17' && github.repository_owner == 'cryostatio' }} id: buildah-build uses: redhat-actions/buildah-build@v2 with: @@ -126,7 +126,7 @@ jobs: registry: ${{ env.CI_REGISTRY }} username: ${{ env.CI_USER }} password: ${{ secrets.REGISTRY_PASSWORD }} - if: ${{ matrix.java == '17' }} && ${{ github.repository_owner == 'cryostatio' }} + if: ${{ matrix.java == '17' && github.repository_owner == 'cryostatio' }} - name: Print image URL run: echo "Image pushed to ${{ steps.push-to-quay.outputs.registry-paths }}" - if: ${{ matrix.java == '17' }} && ${{ github.repository_owner == 'cryostatio' }} + if: ${{ matrix.java == '17' && github.repository_owner == 'cryostatio' }}