Skip to content

Commit

Permalink
Fix release even further
Browse files Browse the repository at this point in the history
  • Loading branch information
rogierslag committed Jul 5, 2016
1 parent afd93a0 commit e86cce9
Showing 1 changed file with 1 addition and 4 deletions.
5 changes: 1 addition & 4 deletions create-release.sh
Original file line number Diff line number Diff line change
Expand Up @@ -20,17 +20,14 @@ echo "Whats the version number associated with this release? Type the version nu
read VERSION

npm version $VERSION
git add package.json
git commit -m "Release of ${VERSION}"
git push
git checkout master > /dev/null
git pull > /dev/null
git rebase develop > /dev/null
git tag -a $VERSION -m "Public release of version ${VERSION}"
git push > /dev/null
git push --tags > /dev/null

echo "Version ${VERSION} was successfully released. On Github you can complete the release: https://github.com/inventid/iaas/releases/tag/${VERSION}"
echo "Version ${VERSION} was successfully released. On Github you can complete the release: https://github.com/inventid/iaas/releases/tag/v${VERSION}"
git checkout develop > /dev/null
exit 0

Expand Down

0 comments on commit e86cce9

Please sign in to comment.