We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4edc95f commit 70963d7Copy full SHA for 70963d7
.github/workflows/deploy_latest_release.yml
@@ -26,9 +26,10 @@ jobs:
26
id: checkRelease
27
run: |-
28
echo "IS_LATEST_RELEASE=${{ env.IS_LATEST_RELEASE }}" >> "$GITHUB_OUTPUT"
29
- if: ${{ env.IS_LATEST_RELEASEE }} != 'true'
30
- # run: |-
31
- # echo "Deploy is not for the latest release. Stopping deployment"
+ if: ${{ env.IS_LATEST_RELEASE }} != 'true'; then
+ run: |-
+ echo "Deploy is not for the latest release. Stopping deployment"
32
+ fi
33
34
# Re-enable this when the PR is ready to be merged
35
# deploy-bug-bounty:
0 commit comments