File tree 1 file changed +10
-0
lines changed
1 file changed +10
-0
lines changed Original file line number Diff line number Diff line change @@ -6,6 +6,7 @@ otlp_endpoint := env_var_or_default("OTEL_EXPORTER_OTLP_ENDPOINT", "")
6
6
loki_endpoint := env_var_or_default (" LOKI_ENDPOINT" ," " )
7
7
8
8
term_dir := " crates/synd_term"
9
+ authn_dir := " crates/synd_authn"
9
10
10
11
alias format := fmt
11
12
alias integration := integration-test
@@ -21,13 +22,15 @@ check:
21
22
# Format files
22
23
fmt : fmt-toml
23
24
25
+ # Run linter
24
26
lint :
25
27
cargo clippy
26
28
27
29
# Format toml files
28
30
fmt-toml :
29
31
taplo fmt --config taplo.toml **.toml
30
32
33
+ # Run test
31
34
test :
32
35
cargo nextest run
33
36
@@ -102,7 +105,14 @@ changelog: changelog-term
102
105
changelog-term :
103
106
git cliff --include-path " {{ term_dir}} /**" out> {{ term_dir}} / CHANGELOG.md
104
107
108
+ changelog-authn :
109
+ git cliff --include-path " {{ authn_dir}} /**" out> {{ authn_dir}} / CHANGELOG.md
105
110
111
+ # Release synd_authn
112
+ release-authn * flags :
113
+ cargo release --package synd_authn {{ flags}}
114
+
115
+ # Release synd_term
106
116
release-term * flags :
107
117
cargo release --package synd_term {{ flags}}
108
118
You can’t perform that action at this time.
0 commit comments