From c9be95cf9aa1c6521577820e5d04f4ef06bce3b2 Mon Sep 17 00:00:00 2001 From: Lauri Kajan Date: Tue, 12 Nov 2024 11:39:31 +0200 Subject: [PATCH] fix conditional check --- .github/workflows/deploy.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml index 1ba2982..2ed8d42 100644 --- a/.github/workflows/deploy.yml +++ b/.github/workflows/deploy.yml @@ -34,7 +34,7 @@ jobs: define-environment: runs-on: ubuntu-latest needs: check-skip-deploy - if: ${{ needs.check-skip-deploy.outputs.skip-deploy }} == 'false' + if: ${{ needs.check-skip-deploy.outputs.skip-deploy == 'false' }} outputs: environment: ${{ steps.set-env.outputs.environment }} steps: