generated from PlexSheep/baserepo
Release v0.3.11-alpha.1
cargo devel CI / cargo CI (push) Successful in 1m52s
Details
cargo devel CI / cargo CI (push) Successful in 1m52s
Details
This commit is contained in:
parent
e9820de2ab
commit
7003f87720
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.0"
|
||||
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.11-alpha.0", path = "members/libpt-core" }
|
||||
libpt-bintols = { version = "0.3.11-alpha.0", path = "members/libpt-bintols" }
|
||||
libpt-log = { version = "0.3.11-alpha.0", path = "members/libpt-log" }
|
||||
libpt-math = { version = "0.3.11-alpha.0", path = "members/libpt-math" }
|
||||
libpt-net = { version = "0.3.11-alpha.0", path = "members/libpt-net" }
|
||||
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"
|
||||
|
|
|
@ -0,0 +1,32 @@
|
|||
#!/bin/bash
|
||||
TOKEN=$(cat ~/.git-credentials | grep -P '(?:)[^:]*(?=@)' -os | head -2 | tail -1)
|
||||
NEW_VERSION=$(cat Cargo.toml | rg '^\s*version\s*=\s*"([^"]*)"\s*$' -or '$1')
|
||||
VERSION=$(git rev-parse HEAD)
|
||||
BODY=$2
|
||||
git tag "v$NEW_VERSION" || echo "could not tag"
|
||||
echo '$' "curl -X 'POST'
|
||||
'https://git.cscherr.de/api/v1/repos/PlexSheep/pt/releases'
|
||||
-H 'accept: application/json'
|
||||
-H 'Authorization: token (redacted)'
|
||||
-H 'Content-Type: application/json'
|
||||
-d" '{
|
||||
"body": "'$BODY'",
|
||||
"draft": true,
|
||||
"name": "v'$NEW_VERSION'",
|
||||
"prerelease": true,
|
||||
"tag_name": "v'$NEW_VERSION'",
|
||||
"target_commitish": "'$COMMIT_SHA'"
|
||||
}'
|
||||
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": true,
|
||||
"name": "v'$NEW_VERSION'",
|
||||
"prerelease": true,
|
||||
"tag_name": "v'$NEW_VERSION'",
|
||||
"target_commitish": "'$COMMIT_SHA'"
|
||||
}'
|
Reference in New Issue