2023-12-14 08:49:28 -06:00
|
|
|
#!/usr/bin/env bash
|
|
|
|
set -euxo pipefail
|
|
|
|
|
|
|
|
VERSION=$(jq -r .version package.json)
|
|
|
|
|
2023-12-19 10:40:33 -06:00
|
|
|
# push changes to github
|
|
|
|
git push
|
2023-12-14 08:49:28 -06:00
|
|
|
# push the current tag to github
|
|
|
|
git push origin "v$VERSION"
|
|
|
|
# set the v1 tag to this release
|
|
|
|
git tag v1 -f
|
|
|
|
# push the v1 tag to github
|
|
|
|
git push origin v1 -f
|
|
|
|
# create a release on github
|
|
|
|
gh release create "v$VERSION" --generate-notes --verify-tag
|