File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -89,7 +89,7 @@ task('release.publishGithubRelease', (done: Function) => {
89
89
github . releases . createRelease ( {
90
90
owner : 'ionic-team' ,
91
91
repo : 'ionic' ,
92
- target_commitish : 'master ' ,
92
+ target_commitish : 'v3 ' ,
93
93
tag_name : 'v' + packageJSON . version ,
94
94
name : packageJSON . version ,
95
95
body : file . toString ( ) ,
@@ -270,7 +270,7 @@ task('release.pullLatest', (done: Function) => {
270
270
} else if ( stdOut && stdOut . length > 0 ) {
271
271
done ( new Error ( 'There are uncommited changes. Please commit or stash changes.' ) ) ;
272
272
} else {
273
- const gitPullResult = spawnSync ( 'git' , [ 'pull' , 'origin' , 'master ' ] ) ;
273
+ const gitPullResult = spawnSync ( 'git' , [ 'pull' , 'origin' , 'v3 ' ] ) ;
274
274
if ( gitPullResult . status !== 0 ) {
275
275
done ( new Error ( 'Error running git pull' ) ) ;
276
276
}
You can’t perform that action at this time.
0 commit comments