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 491f2fd commit 743410bCopy full SHA for 743410b
src/merge-release-run.js
@@ -97,10 +97,8 @@ const run = async () => {
97
exec(`git checkout package.json`) // cleanup
98
exec(`git tag ${newVersion}`)
99
exec(`echo "version=${newVersion}" >> $GITHUB_OUTPUT`)
100
- /*
101
- const env = process.env
102
- const remote = `https://${env.GITHUB_ACTOR}:${env.GITHUB_TOKEN}@github.com/${env.GITHUB_REPOSITORY}.git`
+
+ const remote = `https://${process.env.GITHUB_ACTOR}:${process.env.GITHUB_TOKEN}@github.com/${process.env.GITHUB_REPOSITORY}.git`
103
exec(`git push ${remote} --tags`)
104
- */
105
}
106
run()
0 commit comments