We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1add78b commit 17b4440Copy full SHA for 17b4440
.github/workflows/deploy_latest_release.yml
@@ -25,8 +25,9 @@ jobs:
25
- name: Update Github Outputs
26
id: checkRelease
27
run: |-
28
+ IS_LATEST_RELEASE=$(echo ${{ env.IS_LATEST_RELEASE }})
29
echo "IS_LATEST_RELEASE=${{ env.IS_LATEST_RELEASE }}" >> "$GITHUB_OUTPUT"
- if [ "${{ env.IS_LATEST_RELEASE }}" != "true"]; then
30
+ if [ $IS_LATEST_RELEASE != "true" ]; then
31
echo "Deploy is not for the latest release. Stopping deployment"
32
fi
33
0 commit comments