mirror of
https://github.com/docsifyjs/docsify.git
synced 2025-12-08 19:55:52 +00:00
50 lines
938 B
Bash
Executable File
50 lines
938 B
Bash
Executable File
set -e
|
|
|
|
if [[ -z $1 ]]; then
|
|
echo "Enter new version: "
|
|
read VERSION
|
|
else
|
|
VERSION=$1
|
|
fi
|
|
|
|
RELEASE_TAG=${RELEASE_TAG:-""}
|
|
|
|
if [[ -n "$RELEASE_TAG" && "$VERSION" != *"$RELEASE_TAG"* ]]; then
|
|
RELEASE_MSG="$VERSION ($RELEASE_TAG)"
|
|
else
|
|
RELEASE_MSG="$VERSION"
|
|
fi
|
|
|
|
read -p "Releasing $VERSION $RELEASE_TAG - are you sure? (y/n) " -n 1 -r
|
|
echo
|
|
if [[ $REPLY =~ ^[Yy]$ ]]; then
|
|
echo "Releasing $VERSION ..."
|
|
|
|
# Update version (don't commit or tag yet)
|
|
npm --no-git-tag-version version "$VERSION"
|
|
|
|
# Build and test
|
|
npm run build
|
|
npm run test:update:snapshot
|
|
npm run test
|
|
|
|
# Changelog
|
|
npx conventional-changelog -p angular -i CHANGELOG.md -s
|
|
|
|
# Commit all changes
|
|
git add -A
|
|
git commit -m "[release] $RELEASE_MSG"
|
|
|
|
# Tag and push
|
|
git tag "v$VERSION"
|
|
git push origin "v$VERSION"
|
|
git push
|
|
|
|
# Publish to npm
|
|
if [[ -z $RELEASE_TAG ]]; then
|
|
npm publish
|
|
else
|
|
npm publish --tag "$RELEASE_TAG"
|
|
fi
|
|
fi
|