forked from houbb/markdown-toc
-
Notifications
You must be signed in to change notification settings - Fork 0
/
release.bat
76 lines (59 loc) · 1.91 KB
/
release.bat
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
:: 用于 release 当前项目(windows)
:: author: houbb
:: LastUpdateTime: 2018-1-22 09:08:52
:: 用法:双击运行,或者当前路径 cmd 直接输入 release.bat
:: 关闭回显
@echo OFF
ECHO "============================= RELEASE START..."
:: 版本号信息(需要手动指定)
:::: 旧版本名称
SET version=1.0.0
:::: 新版本名称
SET newVersion=1.0.1
:::: 组织名称
SET groupName=com.github.houbb
:::: 项目名称
SET projectName=markdown-toc
:: release 项目版本
:::: snapshot 版本号
SET snapshot_version=%version%"-SNAPSHOT"
:::: 新的版本号
SET release_version=%version%
call mvn versions:set -DgroupId=%groupName% -DartifactId=%projectName% -DoldVersion=%snapshot_version% -DnewVersion=%release_version%
call mvn -N versions:update-child-modules
call mvn versions:commit
call echo "1. RELEASE %snapshot_version% TO %release_version% DONE."
:: 推送到 github
git add .
git commit -m "release branch %version%"
git push
git status
ECHO "2. PUSH TO GITHUB DONE."
:: 合并到 master 分支
:::: 分支名称
SET branchName="release_"%version%
git checkout master
git pull
git checkout %branchName%
git rebase master
git checkout master
git merge %branchName%
git push
ECHO "3. MERGE TO MASTER DONE."
:: 拉取新的分支
SET newBranchName="release_"%newVersion%
git branch %newBranchName%
git checkout %newBranchName%
git push --set-upstream origin %newBranchName%
ECHO "4. NEW BRANCH DONE."
:: 修改新分支的版本号
SET snapshot_new_version=%newVersion%"-SNAPSHOT"
call mvn versions:set -DgroupId=%groupName% -DartifactId=%projectName% -DoldVersion=%release_version% -DnewVersion=%snapshot_new_version%
call mvn -N versions:update-child-modules
call mvn versions:commit
git add .
git commit -m "modify branch %release_version% TO %snapshot_new_version%"
git push
git status
ECHO "5. MODIFY %release_version% TO %snapshot_new_version% DONE."
ECHO "============================= RELEASE END..."