Skip to content

Commit

Permalink
exclude publish docker when it is not set to true
Browse files Browse the repository at this point in the history
  • Loading branch information
helpmefindaname committed Sep 28, 2024
1 parent b58e86f commit 1eb2c00
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 1eb2c00

Please sign in to comment.