Skip to content

Commit f048786

Browse files
committed
ci: build auto
1 parent a869d42 commit f048786

File tree

2 files changed

+15
-8
lines changed

2 files changed

+15
-8
lines changed

justfile

Lines changed: 13 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,17 @@
1+
set positional-arguments
2+
13
test:
2-
cargo nextest run --all-features
4+
@cargo nextest run --all-features
35

46
changelog:
5-
git cliff -o CHANGELOG.md --tag $NEW_VERSION
6-
git commit -a -m "Update CHANGELOG.md" || true
7+
@git cliff -o CHANGELOG.md --tag $NEW_VERSION
8+
@git commit -a -m "Update CHANGELOG.md" || true
79

8-
release:
9-
cargo release tag --execute
10-
git push origin master
11-
cargo release push --execute
10+
release version:
11+
@cargo release {{version}} --execute
12+
13+
patch:
14+
@cargo release patch --execute
15+
16+
echo version:
17+
@echo {{version}}

release.toml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,3 @@
11
pre-release-hook = ["just", "changelog"]
2-
consolidate-commits = false
2+
consolidate-commits = false
3+
publish = false

0 commit comments

Comments
 (0)