We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e496643 commit 97b1fa7Copy full SHA for 97b1fa7
.github/workflows/deploy_latest_release.yml
@@ -26,9 +26,6 @@ jobs:
26
id: checkRelease
27
run: |-
28
echo "IS_LATEST_RELEASE=${{ env.IS_LATEST_RELEASE }}" >> "$GITHUB_OUTPUT"
29
- echo "Env: ${{ env.IS_LATEST_RELEASE }}"
30
- echo "Var: $IS_LATEST_RELEASE"
31
- echo "Output: ${{ steps.checkRelease.outputs.test }}"
32
33
34
# Re-enable this when the PR is ready to be merged
@@ -78,7 +75,7 @@ jobs:
78
75
steps:
79
76
- name: Continue deployment?
80
77
81
- if [${{ needs.check-latest-release.outputs.IS_LATEST_RELEASE }} != 'true']
+ if [${{ needs.check-latest-release.outputs.IS_LATEST_RELEASE }} != 'true']; then
82
echo "Deploy is not for the latest release. Stopping deployment"
83
exit 0
84
fi
0 commit comments