Skip to content

Commit

Permalink
fix missing then
Browse files Browse the repository at this point in the history
  • Loading branch information
iBreakEverything committed Dec 27, 2024
1 parent e22e45c commit 89ad214
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ jobs:
LATEST_RELEASE_VERSION="0.0"
fi
echo "LATEST_RELEASE_VERSION=$LATEST_RELEASE_VERSION" >> $GITHUB_ENV
if awk "BEGIN {exit !($VERSION > $LATEST_RELEASE_VERSION)}";
if awk "BEGIN {exit !($VERSION > $LATEST_RELEASE_VERSION)}"; then
echo "SHOULD_RELEASE=true" >> $GITHUB_ENV
fi
echo "VERSION=$VERSION"
Expand Down

0 comments on commit 89ad214

Please sign in to comment.