generated from PlexSheep/baserepo
Compare commits
No commits in common. "4772893e8f79b683ec6a67c71d0c789e6f859bfe" and "c79d61bb9eb1a3df5fc7c8461254013a17960812" have entirely different histories.
4772893e8f
...
c79d61bb9e
3 changed files with 9 additions and 51 deletions
12
Cargo.toml
12
Cargo.toml
|
@ -10,7 +10,7 @@ members = [
|
|||
default-members = [".", "members/libpt-core"]
|
||||
[workspace.package]
|
||||
publish = true
|
||||
version = "0.3.11-alpha.1"
|
||||
version = "0.3.10-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.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" }
|
||||
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" }
|
||||
|
||||
[package]
|
||||
name = "libpt"
|
||||
|
|
|
@ -1,28 +1,10 @@
|
|||
#!/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" || (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
|
||||
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
|
||||
|
|
|
@ -1,24 +0,0 @@
|
|||
#!/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