Skip to content

Commit

Permalink
Merge pull request #40 from eidng8/dev
Browse files Browse the repository at this point in the history
fix release script
  • Loading branch information
eidng8 committed Apr 24, 2020
2 parents f5c02b8 + 8f391ba commit 7a5de84
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "g8-vue-tree",
"version": "0.0.27",
"version": "0.0.26",
"description": "A Vue.js tree view component with stable DOM tree.",
"repository": "git@github.com:eidng8/vue-tree.git",
"bugs": "git@github.com:eidng8/vue-tree/issues",
Expand Down
3 changes: 1 addition & 2 deletions scripts/release.bat
Original file line number Diff line number Diff line change
Expand Up @@ -22,14 +22,13 @@ bash.exe -lc github_changelog_generator || goto ERR
for /f "tokens=*" %%v in ('node scripts\make-release-note.js') do set VERSION=%%v

git add . || goto ERR
git commit -m "Release %VERSION% [ci skip]" || goto ERR
git commit -m "Release %VERSION%" || goto ERR
git push || goto ERR
git tag --sign -m "%date%" "Release-v%VERSION%"
git push --tags || goto ERR

git checkout dev
git merge master
git commit -m "bring in %VERSION% [ci skip]"
git push


Expand Down

0 comments on commit 7a5de84

Please sign in to comment.