add changelog template during release (#1997)

This commit is contained in:
Kenneth Geisshirt 2018-09-18 13:38:41 +02:00 committed by Brian Munkholm
parent af46a2d86f
commit abe4afe78a

View File

@ -79,4 +79,11 @@ REALM_BUILD_ANDROID=1 npm publish ${PRERELEASE:+--tag $PRERELEASE}
echo "Pushing v$VERSION tag to GitHub..."
git push origin "v$VERSION"
# Add the changelog templates
echo "Adding changelog template"
./scripts/changelog-header.sh
git add CHANGELOG.md
git commit -m "Adding changelog template"
git push origin "$BRANCH"
echo "Done. Now, you should update the documentation!"