generated from PlexSheep/rs-base
add my old scripts dir
cargo devel CI / cargo CI (push) Has been cancelled
Details
cargo devel CI / cargo CI (push) Has been cancelled
Details
This commit is contained in:
parent
d63f6cfe21
commit
fb8b495ad5
|
@ -22,6 +22,8 @@ for additional platforms such as GitHub and GitLab.
|
||||||
* [Original Repository](https://git.cscherr.de/PlexSheep/Autocrate)
|
* [Original Repository](https://git.cscherr.de/PlexSheep/Autocrate)
|
||||||
* [GitHub Mirror](https://github.com/PlexSheep/Autocrate)
|
* [GitHub Mirror](https://github.com/PlexSheep/Autocrate)
|
||||||
|
|
||||||
|
Take a look at the [scripts](./scripts) directory! [publish.sh](scripts/publish.sh)
|
||||||
|
and [release.sh](scripts/release.sh) are exactly what I'm trying to get rid of.
|
||||||
|
|
||||||
## Features
|
## Features
|
||||||
|
|
||||||
|
|
|
@ -0,0 +1,29 @@
|
||||||
|
#!/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
|
||||||
|
echo ">>>>>>>> PUBLISHING RELEASE FOR REPO"
|
||||||
|
bash scripts/release.sh
|
||||||
|
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
|
|
@ -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"
|
|
@ -0,0 +1,6 @@
|
||||||
|
#!/bin/bash
|
||||||
|
export NEW_VER=$1
|
||||||
|
pwd
|
||||||
|
sed -i 's/\(^\s*version\)\s*=\s*"\([^"]*\)"$/\1 = "'$NEW_VER'"/g' Cargo.toml
|
||||||
|
find * -name 'Cargo.toml' -type f \
|
||||||
|
-exec sed -i 's/\(libpt.*version\s*=\s*\)"[^"]*"/\1"'$NEW_VER'"/g' Cargo.toml {} +
|
Loading…
Reference in New Issue