Skip to content

Commit 17b4440

Browse files
committed
test
1 parent 1add78b commit 17b4440

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

.github/workflows/deploy_latest_release.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,8 +25,9 @@ jobs:
2525
- name: Update Github Outputs
2626
id: checkRelease
2727
run: |-
28+
IS_LATEST_RELEASE=$(echo ${{ env.IS_LATEST_RELEASE }})
2829
echo "IS_LATEST_RELEASE=${{ env.IS_LATEST_RELEASE }}" >> "$GITHUB_OUTPUT"
29-
if [ "${{ env.IS_LATEST_RELEASE }}" != "true"]; then
30+
if [ $IS_LATEST_RELEASE != "true" ]; then
3031
echo "Deploy is not for the latest release. Stopping deployment"
3132
fi
3233

0 commit comments

Comments
 (0)