mirror of
https://github.com/tonarino/innernet.git
synced 2024-11-10 08:55:38 +08:00
release.sh: make sure wireguard-control-sys version is synced
This commit is contained in:
parent
72353ed7a9
commit
b7b50d0156
1 changed files with 7 additions and 5 deletions
12
release.sh
12
release.sh
|
@ -17,7 +17,7 @@ done
|
|||
[ "$#" -eq 1 ] || die "usage: ./release.sh [patch|major|minor|rc]"
|
||||
git diff --quiet || die 'ERROR: git repo is dirty.'
|
||||
|
||||
OLD_VERSION="v$(cargo pkgid -p shared | cut -d '#' -f 2)"
|
||||
OLD_VERSION="$(cargo pkgid -p shared | cut -d '#' -f 2)"
|
||||
|
||||
cargo release "$1" --no-confirm --exclude "hostsfile" --exclude "publicip" --execute
|
||||
|
||||
|
@ -34,11 +34,13 @@ for binary in "innernet" "innernet-server"; do
|
|||
gzip -fk "doc/$binary.8"
|
||||
done
|
||||
|
||||
VERSION="v$(cargo pkgid -p shared | cut -d '#' -f 2)"
|
||||
VERSION="$(cargo pkgid -p shared | cut -d '#' -f 2)"
|
||||
|
||||
perl -pi -e "s/$OLD_VERSION/$VERSION/g" README.md
|
||||
perl -pi -e "s/v$OLD_VERSION/v$VERSION/g" README.md
|
||||
perl -pi -e "s/$OLD_VERSION/$VERSION/g" wireguard-control/Cargo.toml
|
||||
|
||||
git add doc
|
||||
git add README.md
|
||||
git commit -m "meta: release $VERSION"
|
||||
git tag -f -a "$VERSION" -m "release $VERSION"
|
||||
git add wireguard-control/Cargo.toml
|
||||
git commit -m "meta: release v$VERSION"
|
||||
git tag -f -a "v$VERSION" -m "release v$VERSION"
|
||||
|
|
Loading…
Reference in a new issue