Compare commits
1 commit
f8fefcdedd
...
f68d8b146a
Author | SHA1 | Date | |
---|---|---|---|
f68d8b146a |
2 changed files with 13 additions and 13 deletions
22
Cargo.toml
22
Cargo.toml
|
@ -22,17 +22,17 @@ unwrap_used = "warn"
|
|||
expect_used = "warn"
|
||||
|
||||
[workspace.dependencies]
|
||||
git-next-server = { path = "crates/server", version = "0.10" }
|
||||
git-next-server-actor = { path = "crates/server-actor", version = "0.10" }
|
||||
git-next-config = { path = "crates/config", version = "0.10" }
|
||||
git-next-git = { path = "crates/git", version = "0.10" }
|
||||
git-next-forge = { path = "crates/forge", version = "0.10" }
|
||||
git-next-forge-forgejo = { path = "crates/forge-forgejo", version = "0.10" }
|
||||
git-next-forge-github = { path = "crates/forge-github", version = "0.10" }
|
||||
git-next-repo-actor = { path = "crates/repo-actor", version = "0.10" }
|
||||
git-next-webhook-actor = { path = "crates/webhook-actor", version = "0.10" }
|
||||
git-next-file-watcher-actor = { path = "crates/file-watcher-actor", version = "0.10" }
|
||||
git-next-actor-macros = { path = "crates/actor-macros", version = "0.10" }
|
||||
git-next-server = { path = "crates/server", version = "0.9" }
|
||||
git-next-server-actor = { path = "crates/server-actor", version = "0.9" }
|
||||
git-next-config = { path = "crates/config", version = "0.9" }
|
||||
git-next-git = { path = "crates/git", version = "0.9" }
|
||||
git-next-forge = { path = "crates/forge", version = "0.9" }
|
||||
git-next-forge-forgejo = { path = "crates/forge-forgejo", version = "0.9" }
|
||||
git-next-forge-github = { path = "crates/forge-github", version = "0.9" }
|
||||
git-next-repo-actor = { path = "crates/repo-actor", version = "0.9" }
|
||||
git-next-webhook-actor = { path = "crates/webhook-actor", version = "0.9" }
|
||||
git-next-file-watcher-actor = { path = "crates/file-watcher-actor", version = "0.9" }
|
||||
git-next-actor-macros = { path = "crates/actor-macros", version = "0.9" }
|
||||
|
||||
# CLI parsing
|
||||
clap = { version = "4.5", features = ["cargo", "derive"] }
|
||||
|
|
4
justfile
4
justfile
|
@ -42,9 +42,9 @@ grcov-coverage:
|
|||
|
||||
publish version:
|
||||
#!/usr/bin/bash -e
|
||||
[[ -z $(git status --short) ]] || echo "Worktree is Dirty - aborting" ; exit
|
||||
# [[ -z $(git status --short) ]] || echo "Worktree is Dirty - aborting" ; exit
|
||||
echo "Clean"
|
||||
git co v{{version}}
|
||||
# git co v{{version}}
|
||||
ORDER=$(cargo publish-workspace --target-version {{version}} --crate-prefix git-next --show-order 2>/dev/null | cut -d\ -f2-)
|
||||
# INFO: Why not use publish-workspace to publish? It doesn't support when crates-io registry is replaced
|
||||
for P in ${ORDER}
|
||||
|
|
Loading…
Reference in a new issue