Skip to content

Commit

Permalink
ci: fix release
Browse files Browse the repository at this point in the history
  • Loading branch information
sglkc committed Jan 23, 2025
1 parent e036692 commit e7b9844
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ jobs:
id: version_check
run: |
git fetch --tags
PREV_VERSION=$(git describe --tags --abbrev=0 || echo "0.0.0")
PREV_VERSION=$(git describe --tags --abbrev=0 2>/dev/null || echo "0.0.0")
echo "Previous version: $PREV_VERSION"
echo "Current version: $PACKAGE_VERSION"
if [ "$PACKAGE_VERSION" != "$PREV_VERSION" ]; then
Expand Down

0 comments on commit e7b9844

Please sign in to comment.