File tree Expand file tree Collapse file tree 2 files changed +3
-6
lines changed Expand file tree Collapse file tree 2 files changed +3
-6
lines changed Original file line number Diff line number Diff line change @@ -48,6 +48,7 @@ function doPublish() {
48
48
49
49
exec ( `git add ${ pkgJsonPath } ` ) ;
50
50
exec ( `git commit -m "Applying package update to v${ releaseVersion } ` ) ;
51
+ exec ( `git tag v${ releaseVersion } ` ) ;
51
52
exec ( `git push origin HEAD:${ tempPublishBranch } --follow-tags --verbose` ) ;
52
53
53
54
// -------- Generating Android Artifacts with JavaDoc
@@ -113,13 +114,9 @@ function doPublish() {
113
114
}
114
115
115
116
exec ( `del ${ npmTarPath } ` ) ;
116
- exec ( `git tag v${ releaseVersion } ` ) ;
117
- exec (
118
- `git push origin HEAD:${ tempPublishBranch } --follow-tags --verbose`
119
- ) ;
120
117
exec ( `git checkout ${ publishBranchName } ` ) ;
121
118
exec ( `git pull origin ${ publishBranchName } ` ) ;
122
- exec ( `git merge ${ publishBranchName } --no-edit` ) ;
119
+ exec ( `git merge ${ tempPublishBranch } --no-edit` ) ;
123
120
exec (
124
121
`git push origin HEAD:${ publishBranchName } --follow-tags --verbose`
125
122
) ;
Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " react-native" ,
3
- "version" : " 0.0.2" ,
3
+ "version" : " 0.0.2-microsoft.0 " ,
4
4
"description" : " [Microsoft Fork] A framework for building native apps using React" ,
5
5
"license" : " MIT" ,
6
6
"repository" : {
You can’t perform that action at this time.
0 commit comments