From a577ed6cd0e38bc9c486b347f26d9064283da0fc Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andr=C3=A9=20Caiado?= Date: Thu, 7 Mar 2024 18:22:53 +0000 Subject: [PATCH] ci(task-nr): add debug echos (#27) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-authored-by: AndreĢ Caiado da Silva --- .github/workflows/CI-CD.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/CI-CD.yml b/.github/workflows/CI-CD.yml index 8602387..ccbc9e5 100644 --- a/.github/workflows/CI-CD.yml +++ b/.github/workflows/CI-CD.yml @@ -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"