Skip to content

Commit 78a4d63

Browse files
committed
Update publish scripts
1 parent e52499f commit 78a4d63

File tree

1 file changed

+8
-9
lines changed

1 file changed

+8
-9
lines changed

publish/version.sh

Lines changed: 8 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -17,18 +17,17 @@ fi
1717
echo 'Bumping version...'
1818
cd "$CURRENT_DIR/../src"
1919
VERSION=$(npm --no-git-tag-version version "$1")
20-
#git add "package.json"
21-
#git commit -m "Bump version to $VERSION",
20+
git add "package.json"
21+
git commit -m "Bump version to $VERSION"
22+
git push origin
2223

2324
echo 'Updating CHANGELOG...'
2425
cd "$CURRENT_DIR/.."
2526
github_changelog_generator --future-release "$VERSION"
26-
#git add CHANGELOG.md
27-
#git commit -m "Update CHANGELOG.md"
28-
29-
echo 'Pushing changes to remote'
30-
#git push origin
27+
git add CHANGELOG.md
28+
git commit -m "Update CHANGELOG.md"
29+
git push origin
3130

3231
echo 'Tagging...'
33-
#git tag "$VERSION"
34-
#git push origin --tags
32+
git tag "$VERSION"
33+
git push origin --tags

0 commit comments

Comments
 (0)