Skip to content

Commit 70963d7

Browse files
committed
fix conditional
1 parent 4edc95f commit 70963d7

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

.github/workflows/deploy_latest_release.yml

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -26,9 +26,10 @@ jobs:
2626
id: checkRelease
2727
run: |-
2828
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"
29+
if: ${{ env.IS_LATEST_RELEASE }} != 'true'; then
30+
run: |-
31+
echo "Deploy is not for the latest release. Stopping deployment"
32+
fi
3233
3334
# Re-enable this when the PR is ready to be merged
3435
# deploy-bug-bounty:

0 commit comments

Comments
 (0)