Skip to content

Commit

Permalink
Fix gradle workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
Ravis96 committed Jun 4, 2024
1 parent 2745413 commit 362b2f4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/gradle.yml
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ jobs:
echo "Current version: $CURRENT_VERSION"
LATEST_TAG=$(git describe --tags $(git rev-list --tags --max-count=1) 2>/dev/null || echo "no-tag-found")
echo "Latest tag: $LATEST_TAG"
if [ "$LATEST_TAG" == "v$CURRENT_VERSION" ]; then
if [ "$LATEST_TAG" == "$CURRENT_VERSION" ]; then
echo "Version has not changed. Exiting."
echo "version_changed=false" >> $GITHUB_OUTPUT
else
Expand Down

0 comments on commit 362b2f4

Please sign in to comment.