Skip to content

Commit dfb2f27

Browse files
committed
chore(build): change to the v3 branch
1 parent 98c5d7e commit dfb2f27

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

scripts/gulp/tasks/release.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,7 @@ task('release.publishGithubRelease', (done: Function) => {
8989
github.releases.createRelease({
9090
owner: 'ionic-team',
9191
repo: 'ionic',
92-
target_commitish: 'master',
92+
target_commitish: 'v3',
9393
tag_name: 'v' + packageJSON.version,
9494
name: packageJSON.version,
9595
body: file.toString(),
@@ -270,7 +270,7 @@ task('release.pullLatest', (done: Function) => {
270270
} else if ( stdOut && stdOut.length > 0) {
271271
done(new Error('There are uncommited changes. Please commit or stash changes.'));
272272
} else {
273-
const gitPullResult = spawnSync('git', ['pull', 'origin', 'master']);
273+
const gitPullResult = spawnSync('git', ['pull', 'origin', 'v3']);
274274
if (gitPullResult.status !== 0) {
275275
done(new Error('Error running git pull'));
276276
}

0 commit comments

Comments
 (0)