Skip to content

Commit

Permalink
ci(task-nr): fix if condition (#30)
Browse files Browse the repository at this point in the history
Co-authored-by: André Caiado da Silva <[email protected]>
  • Loading branch information
andrecaiado and acaiado authored Mar 7, 2024
1 parent c0498c0 commit 13addf3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/CI-CD.yml
Original file line number Diff line number Diff line change
Expand Up @@ -131,7 +131,7 @@ jobs:
deploy:
runs-on: ubuntu-latest
needs: [prepare, build-image-push]
if: ${{ needs.prepare.outputs.deploy == 'true' }}
if: needs.prepare.outputs.deploy == 'true'
steps:
- name: Deploy
run: |
Expand Down

0 comments on commit 13addf3

Please sign in to comment.