Skip to content

Commit

Permalink
Fix lint
Browse files Browse the repository at this point in the history
  • Loading branch information
AlecRust committed Apr 17, 2024
1 parent dbc0680 commit 69aca1c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .cliff/update-floating-tag.sh
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,6 @@
MAJOR_VERSION=$(echo $1 | cut -d '.' -f 1)
FLOATING_TAG="v$MAJOR_VERSION"
VERSION_TAG="v$1"
git tag -d $FLOATING_TAG # Delete the old local floating tag
git tag $FLOATING_TAG $VERSION_TAG # Create new floating tag pointing to the released version
git tag -d $FLOATING_TAG # Delete the old local floating tag
git tag $FLOATING_TAG $VERSION_TAG # Create new floating tag pointing to the released version
git push origin $FLOATING_TAG --force # Force update the remote floating tag

0 comments on commit 69aca1c

Please sign in to comment.