We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b165131 commit aa460f1Copy full SHA for aa460f1
merge-release-run.js
@@ -60,6 +60,8 @@ const run = async () => {
60
exec(`npm publish`)
61
exec(`git checkout package.json`) // cleanup
62
exec(`git tag ${newVersion}`)
63
- exec(`git push merge-release --tags`)
+ const env = process.env
64
+ const remote = `https://${env.GITHUB_ACTOR}:${env.GITHUB_TOKEN}@github.com/${env.GITHUB_REPOSITORY}.git`
65
+ exec(`git push ${remote} --tags`)
66
}
67
run()
0 commit comments