Skip to content

Commit

Permalink
fix type
Browse files Browse the repository at this point in the history
  • Loading branch information
aduh95 committed Jul 22, 2024
1 parent 4bd64c9 commit 1104f09
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions lib/promote_release.js
Original file line number Diff line number Diff line change
Expand Up @@ -391,11 +391,12 @@ export default class ReleasePromotion extends Session {

const releaseBranch = `v${versionComponents.major}.x`;

// TODO: find a solution for key passphrase from the terminal
return Promise.all([
forceRunAsync('git', ['push', this.upstream, `HEAD:refs/heads/${releaseBranch}`],
{ ignoreFailure: false }),
forceRunAsync('git', ['push', this.upstream, `HEAD:refs/heads/${stagingBranch}`,
{ ignoreFailure: false }])
forceRunAsync('git', ['push', this.upstream, `HEAD:refs/heads/${stagingBranch}`],
{ ignoreFailure: false })
]);
}

Expand Down

0 comments on commit 1104f09

Please sign in to comment.