Skip to content

Commit

Permalink
Fix justfile
Browse files Browse the repository at this point in the history
  • Loading branch information
chevdor committed Jun 24, 2022
1 parent a001e22 commit 2ff1b7e
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions justfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
VERSION := `toml get Cargo.toml package.version | jq -r`
TARGET_DIR := "target/release"
export TAG:=`toml get Cargo.toml "package.version" | jq -r .`

# List available commands
default:
Expand Down Expand Up @@ -47,3 +48,9 @@ brew:
bump:
cargo workspaces version --no-git-push

tag:
#!/usr/bin/env bash
echo Tagging version v$TAG
git tag "v$TAG" -f
git tag | sort -Vr | head

0 comments on commit 2ff1b7e

Please sign in to comment.