forked from kemitix/git-next
chore: remove manual crates.io publish recipe from justfile
This commit is contained in:
parent
d4f16e6f5e
commit
681d85aac1
1 changed files with 0 additions and 22 deletions
22
justfile
22
justfile
|
@ -47,28 +47,6 @@ grcov-coverage:
|
|||
find . -name '*.profraw' -exec rm "{}" \;
|
||||
echo "Now:\n\topen target/debug/coverage/index.html"
|
||||
|
||||
publish version:
|
||||
#!/usr/bin/bash -e
|
||||
echo "Publishing git-next v{{version}} to crates.io..."
|
||||
if [ -z $(git status --short) ]; then
|
||||
echo "Worktree is clean - proceeding"
|
||||
else
|
||||
echo "Worktree is Dirty - aborting" ; exit
|
||||
fi
|
||||
git checkout v{{version}}
|
||||
ORDER=$(cargo publish-workspace --target-version {{version}} --crate-prefix git-next --show-order 2>/dev/null | cut -d\ -f2-)
|
||||
echo "Publishing crates in order: ${ORDER}"
|
||||
# INFO: Why not use publish-workspace to publish? It doesn't support when crates-io registry is replaced
|
||||
for P in ${ORDER}
|
||||
do
|
||||
echo "Publishing ${P}..."
|
||||
cargo publish --registry crates-io -p $P
|
||||
echo "Done: ${P}"
|
||||
echo "======================================"
|
||||
done
|
||||
echo "All crates published"
|
||||
git checkout dev
|
||||
|
||||
docker-build-builder:
|
||||
docker build -t git.kemitix.net/kemitix/git-next-builder:2024.08.04 -f Dockerfile.builder .
|
||||
|
||||
|
|
Loading…
Reference in a new issue