force push
This commit is contained in:
parent
8605c43792
commit
63aac9338f
2 changed files with 3 additions and 2 deletions
2
dist/index.js
vendored
2
dist/index.js
vendored
|
@ -1321,7 +1321,7 @@ class GitHubHelper {
|
||||||
.then(() => true, () => false);
|
.then(() => true, () => false);
|
||||||
if (branchExists) {
|
if (branchExists) {
|
||||||
core.info(`Branch ${branch} exists; Updating ref`);
|
core.info(`Branch ${branch} exists; Updating ref`);
|
||||||
yield this.octokit.rest.git.updateRef(Object.assign(Object.assign({}, repository), { sha: newHead, ref: `heads/${branch}` }));
|
yield this.octokit.rest.git.updateRef(Object.assign(Object.assign({}, repository), { sha: newHead, ref: `heads/${branch}`, force: true }));
|
||||||
}
|
}
|
||||||
else {
|
else {
|
||||||
core.info(`Branch ${branch} does not exist; Creating ref`);
|
core.info(`Branch ${branch} does not exist; Creating ref`);
|
||||||
|
|
|
@ -278,7 +278,8 @@ export class GitHubHelper {
|
||||||
await this.octokit.rest.git.updateRef({
|
await this.octokit.rest.git.updateRef({
|
||||||
...repository,
|
...repository,
|
||||||
sha: newHead,
|
sha: newHead,
|
||||||
ref: `heads/${branch}`
|
ref: `heads/${branch}`,
|
||||||
|
force: true
|
||||||
})
|
})
|
||||||
} else {
|
} else {
|
||||||
core.info(`Branch ${branch} does not exist; Creating ref`)
|
core.info(`Branch ${branch} does not exist; Creating ref`)
|
||||||
|
|
Loading…
Reference in a new issue