Skip to content

Commit

Permalink
ci(task-nr): add debug echos (#27)
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 70e4923 commit a577ed6
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion .github/workflows/CI-CD.yml
Original file line number Diff line number Diff line change
Expand Up @@ -131,8 +131,10 @@ jobs:
deploy:
runs-on: ubuntu-latest
needs: [prepare, build-image-push]
if: ${{ needs.prepare.outputs.deploy == true }}
if: always() && ${{ needs.prepare.outputs.deploy == true }}
steps:
- name: Deploy
run: |
echo ${{ needs.prepare.outputs.deploy }}
echo ${{ needs.prepare.outputs.deploy == true }}
echo "Deploying the app to ${{ needs.prepare.outputs.environment }} using ${{ github.event.repository.name }}:${{ needs.prepare.outputs.tag_version }} image"

0 comments on commit a577ed6

Please sign in to comment.