Skip to content

Commit

Permalink
cleanup: add new tag in release script
Browse files Browse the repository at this point in the history
  • Loading branch information
zshipko committed Dec 30, 2023
1 parent 8a191e3 commit b496072
Showing 1 changed file with 7 additions and 2 deletions.
9 changes: 7 additions & 2 deletions scripts/release.sh
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,11 @@
#
# usage: `./scripts/release.sh`

set -e
set -eu

gh release create v"$(cat extism/VERSION)" --generate-notes
VERSION=$(cat extism/VERSION)
TAG="v$VERSION"

git tag "$TAG"
git push origin "$TAG"
gh release create "$TAG" --generate-notes

0 comments on commit b496072

Please sign in to comment.