You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Apr 13, 2020. It is now read-only.
echo "Release type is not set. Please pass in either [major, minor or patch] or any commands supported here https://yarnpkg.com/lang/en/docs/cli/version/#toc-commands"
return 1
fi
REMOTE=${2:-origin}
RELEASE_BRANCH=$(whoami)/release
# get the latest from master, create a release branch
git checkout master
git pull
git checkout -b ${RELEASE_BRANCH}
yarn build-cmd-docs
# Do not tag commit
yarn config set version-git-tag false
# Commit message template
yarn config set version-git-message "release: ${RELEASE_TYPE} bump to v%s"
# Bump version following the specified release type format