Skip to content

Commit 7a5de84

Browse files
authored
Merge pull request #40 from eidng8/dev
fix release script
2 parents f5c02b8 + 8f391ba commit 7a5de84

File tree

2 files changed

+2
-3
lines changed

2 files changed

+2
-3
lines changed

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "g8-vue-tree",
3-
"version": "0.0.27",
3+
"version": "0.0.26",
44
"description": "A Vue.js tree view component with stable DOM tree.",
55
"repository": "git@github.com:eidng8/vue-tree.git",
66
"bugs": "git@github.com:eidng8/vue-tree/issues",

scripts/release.bat

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,14 +22,13 @@ bash.exe -lc github_changelog_generator || goto ERR
2222
for /f "tokens=*" %%v in ('node scripts\make-release-note.js') do set VERSION=%%v
2323

2424
git add . || goto ERR
25-
git commit -m "Release %VERSION% [ci skip]" || goto ERR
25+
git commit -m "Release %VERSION%" || goto ERR
2626
git push || goto ERR
2727
git tag --sign -m "%date%" "Release-v%VERSION%"
2828
git push --tags || goto ERR
2929

3030
git checkout dev
3131
git merge master
32-
git commit -m "bring in %VERSION% [ci skip]"
3332
git push
3433

3534

0 commit comments

Comments
 (0)