Skip to content

Commit

Permalink
chore: use correct version format
Browse files Browse the repository at this point in the history
  • Loading branch information
dj95 committed Nov 30, 2024
1 parent 8fdd2e8 commit cf16ee9
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions justfile
Original file line number Diff line number Diff line change
Expand Up @@ -36,9 +36,9 @@ lint:
release:
#!/usr/bin/env bash
export VERSION="$( git cliff --bumped-version )"
cargo set-version "$VERSION"
cargo set-version "${VERSION:1}"
direnv exec . cargo build --release
git commit -am "chore: bump version to v$VERSION"
git tag -m "v$VERSION" v$VERSION
git commit -am "chore: bump version to $VERSION"
git tag -m "$VERSION" "$VERSION"
git push origin main
git push origin "v$VERSION"
git push origin "$VERSION"

0 comments on commit cf16ee9

Please sign in to comment.