mirror of
https://github.com/ralsina/tartrazine.git
synced 2025-04-04 15:28:22 +00:00
build: added do_release script
This commit is contained in:
parent
a1318501a5
commit
3c0b3c38e2
15
do_release.sh
Executable file
15
do_release.sh
Executable file
@ -0,0 +1,15 @@
|
|||||||
|
#!/bin/bash
|
||||||
|
set e
|
||||||
|
|
||||||
|
PKGNAME=$(basename "$PWD")
|
||||||
|
VERSION=$(git cliff --bumped-version |cut -dv -f2)
|
||||||
|
|
||||||
|
sed "s/^version:.*$/version: $VERSION/g" -i shard.yml
|
||||||
|
git add shard.yml
|
||||||
|
hace lint test
|
||||||
|
git cliff --bump -o
|
||||||
|
git commit -a -m "bump: Release v$VERSION"
|
||||||
|
git tag "v$VERSION"
|
||||||
|
git push --tags
|
||||||
|
hace static
|
||||||
|
gh release create "v$VERSION" "bin/$PKGNAME-static-linux-amd64" "bin/$PKGNAME-static-linux-arm64" --title "Release v$VERSION" --notes "$(git cliff -l -s all)"
|
Loading…
x
Reference in New Issue
Block a user