-
-
Notifications
You must be signed in to change notification settings - Fork 16
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
68 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,68 @@ | ||
#!/usr/bin/env bash | ||
|
||
# fail on unset variables and command errors | ||
set -eu -o pipefail # -x: is for debugging | ||
|
||
CURRENT_BRANCH="$(git branch --show-current)" | ||
if [ "${CURRENT_BRANCH}" != "master" ]; then | ||
echo "$0: Current branch ${CURRENT_BRANCH} is not master, continue? (y/n)" | ||
read -r res | ||
if [ "${res}" = "n" ]; then | ||
echo "$0: Stop script" | ||
exit 0 | ||
fi | ||
fi | ||
|
||
PRERELEASE_TYPE_LIST="prerelease prepatch preminor premajor" | ||
if [ "${CURRENT_BRANCH}" != "master" ]; then | ||
RELEASE_TYPE_LIST="${PRERELEASE_TYPE_LIST}" | ||
else | ||
RELEASE_TYPE_LIST="${PRERELEASE_TYPE_LIST} patch minor major" | ||
fi | ||
|
||
if command -v fzf; then | ||
RELEASE_TYPE=$(echo "${RELEASE_TYPE_LIST}" | tr ' ' '\n' | fzf --layout=reverse) | ||
else | ||
select sel in ${RELEASE_TYPE_LIST}; do | ||
RELEASE_TYPE="${sel}" | ||
break | ||
done | ||
fi | ||
|
||
echo "$0: Create ${RELEASE_TYPE} release, continue? (y/n)" | ||
read -r res | ||
if [ "${res}" = "n" ]; then | ||
echo "$0: Stop script" | ||
exit 0 | ||
fi | ||
|
||
git fetch origin | ||
if [ "${CURRENT_BRANCH}" != "master" ]; then | ||
git pull origin "${CURRENT_BRANCH}" | ||
else | ||
git pull origin master | ||
git tag -d v3 || true | ||
git pull origin --tags | ||
fi | ||
|
||
npm ci | ||
|
||
mkdir ./lib | ||
npm run build | ||
git add ./lib/index.js | ||
git commit -m "chore(release): Add build assets" | ||
|
||
npm run release -- --release-as "${RELEASE_TYPE}" --preset eslint | ||
|
||
git rm ./lib/index.js | ||
rm -rf ./lib | ||
git commit -m "chore(release): Remove build assets [skip ci]" | ||
|
||
if [ "${CURRENT_BRANCH}" != "master" ]; then | ||
git push origin "${CURRENT_BRANCH}" | ||
else | ||
git push origin master | ||
fi | ||
|
||
TAG_NAME="v$(jq -r '.version' ./package.json)" | ||
git push origin "${TAG_NAME}" |