Skip to content

Commit

Permalink
chore: add tag-release command to justfile
Browse files Browse the repository at this point in the history
Signed-off-by: simonsan <14062932+simonsan@users.noreply.github.com>
  • Loading branch information
simonsan committed Mar 1, 2024
1 parent fe7463b commit dde857a
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion .justfile
Original file line number Diff line number Diff line change
Expand Up @@ -147,4 +147,9 @@ update-scoop-manifest *ARGS:

# Run insta tests in review mode
insta:
cargo insta test --review --workspace
cargo insta test --review --workspace

# Create a new tag for the current version on crates.io to make cargo-dist create a new release
tag-release:
git tag -a pace-rs-v$(xh get https://crates.io/api/v1/crates/pace-rs | jq .crate.max_version)
git push origin pace-rs-v$(xh get https://crates.io/api/v1/crates/pace-rs | jq .crate.max_version)

0 comments on commit dde857a

Please sign in to comment.