publish script cool
cargo devel CI / cargo CI (push) Successful in 2m0s Details

This commit is contained in:
Christoph J. Scherr 2024-01-17 16:52:32 +01:00 committed by PlexSheep
parent e0bc9cba0b
commit 54eac92ca7
Signed by: PlexSheep
GPG Key ID: 7CDD0B14851A08EF
2 changed files with 8 additions and 9 deletions

View File

@ -1,8 +0,0 @@
#!/bin/bash
set -e
PKGs=(libpt-{core,math,log,net,bintols,ccc,hedu,bin,py} libpt)
for PKG in "${PKGs[@]}"; do
echo "Package: $PKG"
cargo publish --registry cscherr -p "$PKG"
cargo publish -p "$PKG"
done

View File

@ -1,3 +1,10 @@
#!/bin/bash
cargo ws publish --registry cscherr --publish-as-is
set -e
cargo check --all-features
cargo ws version --no-git-commit
NEW_VERSION=$(cat Cargo.toml| rg '^\s*version\s*=\s*"([^"]*)"\s*$' -or '$1')
bash scripts/set_all_versions.sh $NEW_VERSION
git add -A
git commit -m "Release v$NEW_VERSION"
cargo ws publish --registry cscherr --amend --publish-as-is
cargo publish --registry cscherr -p libpt