From 1eb2c008d5e0a8fd5b650c0dbd37e7c5edc605f9 Mon Sep 17 00:00:00 2001 From: Benedikt Fuchs Date: Sat, 28 Sep 2024 19:09:36 +0200 Subject: [PATCH] exclude publish docker when it is not set to true --- .github/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 62bc7e9..855a1d0 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -114,7 +114,7 @@ jobs: name: Publish docker file and push it to a registry runs-on: ubuntu-latest needs: [test, test-docker, prep-vars] - if: needs.prep-vars.outputs.publish_docker && github.ref_type == 'tag' + if: needs.prep-vars.outputs.publish_docker == 'true' && github.ref_type == 'tag' steps: - name: Checkout code uses: actions/checkout@v3