From 70e49238371254ba67ed38caba91098e85632f97 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andr=C3=A9=20Caiado?= Date: Thu, 7 Mar 2024 18:06:20 +0000 Subject: [PATCH] ci(task-pr): fix if condition compare (#26) 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 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/CI-CD.yml b/.github/workflows/CI-CD.yml index a65b6eb..8602387 100644 --- a/.github/workflows/CI-CD.yml +++ b/.github/workflows/CI-CD.yml @@ -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: |