Skip to content

Commit fb8bb38

Browse files
committed
chore: update justfile
1 parent b5e76ca commit fb8bb38

File tree

1 file changed

+10
-0
lines changed

1 file changed

+10
-0
lines changed

justfile

+10
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@ otlp_endpoint := env_var_or_default("OTEL_EXPORTER_OTLP_ENDPOINT", "")
66
loki_endpoint := env_var_or_default("LOKI_ENDPOINT","")
77

88
term_dir := "crates/synd_term"
9+
authn_dir := "crates/synd_authn"
910

1011
alias format := fmt
1112
alias integration := integration-test
@@ -21,13 +22,15 @@ check:
2122
# Format files
2223
fmt: fmt-toml
2324

25+
# Run linter
2426
lint:
2527
cargo clippy
2628

2729
# Format toml files
2830
fmt-toml:
2931
taplo fmt --config taplo.toml **.toml
3032

33+
# Run test
3134
test:
3235
cargo nextest run
3336

@@ -102,7 +105,14 @@ changelog: changelog-term
102105
changelog-term:
103106
git cliff --include-path "{{term_dir}}/**" out> {{term_dir}}/CHANGELOG.md
104107

108+
changelog-authn:
109+
git cliff --include-path "{{authn_dir}}/**" out> {{authn_dir}}/CHANGELOG.md
105110

111+
# Release synd_authn
112+
release-authn *flags:
113+
cargo release --package synd_authn {{flags}}
114+
115+
# Release synd_term
106116
release-term *flags:
107117
cargo release --package synd_term {{flags}}
108118

0 commit comments

Comments
 (0)