-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
use pre* version type based on the branch name, and do not use the co…
…mmit hash in the tag, but delete/re-tag in pre* version types
- Loading branch information
Showing
2 changed files
with
20 additions
and
11 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
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 |
---|---|---|
|
@@ -19,6 +19,11 @@ elif [[ "$NOTES" == *"Fixes:"* ]]; then | |
VERTYPE=patch | ||
fi | ||
|
||
BRANCH=$(git rev-parse --abbrev-ref HEAD) | ||
if [[ "$VERTYPE" != "pre"* && "$BRANCH" != "publish-"* && "$BRANCH" != "release-chain"* && "$BRANCH" != "master" ]]; then | ||
VERTYPE="pre$VERTYPE" | ||
fi | ||
|
||
########## | ||
# CONTEXT | ||
########## | ||
|
@@ -35,30 +40,34 @@ fi | |
######################## | ||
|
||
VERSION="$(node -p "require('./package.json').version")" | ||
if [[ "$(grep 'Unreleased' CHANGELOG.md)" == "" ]]; then | ||
echo "No unreleased changes to publish" | ||
exit 1 | ||
if [[ "$VERTYPE" != "pre"* ]]; then | ||
if [[ "$(grep 'Unreleased' CHANGELOG.md)" == "" ]]; then | ||
echo "No unreleased changes to publish" | ||
exit 1 | ||
fi | ||
|
||
# only update the change log if the version type is not prepatch, preminor, prerelease, pre* | ||
sed -i.bak "s|Unreleased|$VERSION|" CHANGELOG.md | ||
fi | ||
sed -i.bak "s|Unreleased|$VERSION|" CHANGELOG.md | ||
|
||
################# | ||
# COMMIT CHANGES | ||
################# | ||
|
||
npm i --package-lock-only | ||
TAG="v$VERSION" | ||
BRANCH=$(git rev-parse --abbrev-ref HEAD) | ||
if [[ "$BRANCH" != "release" && "$BRANCH" != "master" ]]; then | ||
HASH=$(git rev-parse --short HEAD) | ||
TAG="$TAG-$HASH" | ||
fi | ||
COMMITMSG="$TAG $UPDATED" | ||
echo "$COMMITMSG" | ||
echo "committing version change ..." | ||
git config --global user.email "[email protected]" | ||
git config --global user.name "PPTeam CI" | ||
git add --all | ||
git commit -m "$COMMITMSG" | ||
if [[ "$VERTYPE" == "pre"* ]]; then | ||
# delete existing tags that match | ||
git tag -d $TAG &>/dev/null | ||
git push -d origin $TAG &>/dev/null | ||
fi | ||
git tag $TAG | ||
BRANCH=$(git rev-parse --abbrev-ref HEAD) | ||
git push origin $BRANCH | ||
|