Add release instructions and update release script

This commit is contained in:
Taiki Endo
2023-03-26 18:47:22 +09:00
parent 1c96e2750b
commit f7379c13bb
5 changed files with 127 additions and 52 deletions

View File

@@ -3,6 +3,15 @@ set -euxo pipefail
IFS=$'\n\t'
cd "$(dirname "$0")"/..
bail() {
echo >&2 "error: $*"
exit 1
}
if [[ -z "${CI:-}" ]]; then
bail "this script is intended to call from release workflow on CI"
fi
git config user.name "Taiki Endo"
git config user.email "te316e89@gmail.com"