There was an error while loading. Please reload this page.
1 parent e52499f commit 78a4d63Copy full SHA for 78a4d63
publish/version.sh
@@ -17,18 +17,17 @@ fi
17
echo 'Bumping version...'
18
cd "$CURRENT_DIR/../src"
19
VERSION=$(npm --no-git-tag-version version "$1")
20
-#git add "package.json"
21
-#git commit -m "Bump version to $VERSION",
+git add "package.json"
+git commit -m "Bump version to $VERSION"
22
+git push origin
23
24
echo 'Updating CHANGELOG...'
25
cd "$CURRENT_DIR/.."
26
github_changelog_generator --future-release "$VERSION"
-#git add CHANGELOG.md
27
-#git commit -m "Update CHANGELOG.md"
28
-
29
-echo 'Pushing changes to remote'
30
-#git push origin
+git add CHANGELOG.md
+git commit -m "Update CHANGELOG.md"
31
32
echo 'Tagging...'
33
-#git tag "$VERSION"
34
-#git push origin --tags
+git tag "$VERSION"
+git push origin --tags
0 commit comments