generated from PlexSheep/baserepo
Compare commits
8 commits
c79d61bb9e
...
4772893e8f
Author | SHA1 | Date | |
---|---|---|---|
4772893e8f | |||
1d9325f89a | |||
e9820de2ab | |||
ab47ce18bc | |||
6e791f068d | |||
0edc9c8e08 | |||
6a6af66b35 | |||
c3555d2fda |
3 changed files with 51 additions and 9 deletions
12
Cargo.toml
12
Cargo.toml
|
@ -10,7 +10,7 @@ members = [
|
|||
default-members = [".", "members/libpt-core"]
|
||||
[workspace.package]
|
||||
publish = true
|
||||
version = "0.3.10-alpha.1"
|
||||
version = "0.3.11-alpha.1"
|
||||
edition = "2021"
|
||||
authors = ["Christoph J. Scherr <software@cscherr.de>"]
|
||||
license = "MIT"
|
||||
|
@ -28,11 +28,11 @@ categories = [
|
|||
[workspace.dependencies]
|
||||
anyhow = "1.0.79"
|
||||
thiserror = "1.0.56"
|
||||
libpt-core = { version = "0.3.10-alpha.1", path = "members/libpt-core", registry = "cscherr" }
|
||||
libpt-bintols = { version = "0.3.10-alpha.1", path = "members/libpt-bintols", registry = "cscherr" }
|
||||
libpt-log = { version = "0.3.10-alpha.1", path = "members/libpt-log", registry = "cscherr" }
|
||||
libpt-math = { version = "0.3.10-alpha.1", path = "members/libpt-math", registry = "cscherr" }
|
||||
libpt-net = { version = "0.3.10-alpha.1", path = "members/libpt-net", registry = "cscherr" }
|
||||
libpt-core = { version = "0.3.11-alpha.1", path = "members/libpt-core" }
|
||||
libpt-bintols = { version = "0.3.11-alpha.1", path = "members/libpt-bintols" }
|
||||
libpt-log = { version = "0.3.11-alpha.1", path = "members/libpt-log" }
|
||||
libpt-math = { version = "0.3.11-alpha.1", path = "members/libpt-math" }
|
||||
libpt-net = { version = "0.3.11-alpha.1", path = "members/libpt-net" }
|
||||
|
||||
[package]
|
||||
name = "libpt"
|
||||
|
|
|
@ -1,10 +1,28 @@
|
|||
#!/bin/bash
|
||||
set -e
|
||||
cargo check --all-features
|
||||
echo ">>>>>>>> SELECT A NEW VERSION"
|
||||
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 --no-git-push --publish-as-is || cargo publish --registry cscherr -p libpt
|
||||
git push
|
||||
git commit -m "Release v$NEW_VERSION" || (echo ">>>>>>>> COMMIT FAILED OR THERE WAS NOTHING TO COMMIT"; sleep 5)
|
||||
echo ">>>>>>>> SKIP!!!!!"
|
||||
cargo ws version --amend
|
||||
git push || (echo ">>>>>>>> PUSH FAILED OR THERE WAS NOTHING TO PUSH"; sleep 5)
|
||||
echo ">>>>>>>> PUBLISHING TO CRATES.IO NEXT"
|
||||
sleep 10
|
||||
cargo publish -p libpt-log
|
||||
cargo publish -p libpt-core
|
||||
cargo publish -p libpt-bintols
|
||||
cargo publish -p libpt-math
|
||||
cargo publish -p libpt-net
|
||||
cargo publish -p libpt
|
||||
echo ">>>>>>>> PUBLISHING TO CSCHERR.DE NEXT"
|
||||
sleep 3
|
||||
cargo publish --registry cscherr -p libpt-log
|
||||
cargo publish --registry cscherr -p libpt-core
|
||||
cargo publish --registry cscherr -p libpt-bintols
|
||||
cargo publish --registry cscherr -p libpt-math
|
||||
cargo publish --registry cscherr -p libpt-net
|
||||
cargo publish --registry cscherr -p libpt
|
||||
|
|
24
scripts/release.sh
Executable file
24
scripts/release.sh
Executable file
|
@ -0,0 +1,24 @@
|
|||
#!/bin/bash
|
||||
TOKEN=$(cat ~/.git-credentials | grep 'git.cscherr.de' | grep -P '(?:)[^:]*(?=@)' -o)
|
||||
NEW_VERSION=$(cat Cargo.toml | rg '^\s*version\s*=\s*"([^"]*)"\s*$' -or '$1')
|
||||
VERSION=$(git rev-parse HEAD)
|
||||
GIT_COMMIT_SHA=$(git rev-parse HEAD)
|
||||
BODY="
|
||||
$(git log $(git describe --tags --abbrev=0)..HEAD --pretty="- %s" -oneline --decorate)
|
||||
"
|
||||
USER=PlexSheep
|
||||
git tag "v$NEW_VERSION-test" || echo "could not tag"
|
||||
curl -X 'POST' \
|
||||
'https://git.cscherr.de/api/v1/repos/PlexSheep/pt/releases' \
|
||||
-H 'accept: application/json' \
|
||||
-H "Authorization: token $TOKEN" \
|
||||
-H 'Content-Type: application/json' \
|
||||
-d '{
|
||||
"body": "'"$BODY"'",
|
||||
"draft": false,
|
||||
"name": "v'$NEW_VERSION'",
|
||||
"prerelease": true,
|
||||
"tag_name": "v'$NEW_VERSION'",
|
||||
"target_commitish": "'$GIT_COMMIT_SHA'"
|
||||
}' | python -m json.tool
|
||||
git push || echo "could not push"
|
Reference in a new issue