Skip to content

Commit

Permalink
fix conditional check
Browse files Browse the repository at this point in the history
  • Loading branch information
LKajan committed Nov 12, 2024
1 parent cd629cf commit c9be95c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down

0 comments on commit c9be95c

Please sign in to comment.