Skip to content

Commit

Permalink
Fix: Push release branch back to origin
Browse files Browse the repository at this point in the history
  • Loading branch information
ofhouse committed Mar 15, 2021
1 parent bc280fb commit ab247eb
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion dist/index.js

Large diffs are not rendered by default.

3 changes: 2 additions & 1 deletion src/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,8 @@ async function run() {
core.info(`Creating new tag ${releaseTag}`);
await git.addAnnotatedTag(releaseTag, `Release ${releaseTag}`);

// Push tag back to repo
// Push commits & tag back to repo
git.push('origin', releaseBranchName);
git.pushTags('origin');
}

Expand Down

0 comments on commit ab247eb

Please sign in to comment.