Skip to content

Commit

Permalink
fix: reenable push tag
Browse files Browse the repository at this point in the history
  • Loading branch information
Alvaro Jose committed Aug 14, 2023
1 parent 491f2fd commit 743410b
Showing 1 changed file with 2 additions and 4 deletions.
6 changes: 2 additions & 4 deletions src/merge-release-run.js
Original file line number Diff line number Diff line change
Expand Up @@ -97,10 +97,8 @@ const run = async () => {
exec(`git checkout package.json`) // cleanup
exec(`git tag ${newVersion}`)
exec(`echo "version=${newVersion}" >> $GITHUB_OUTPUT`)
/*
const env = process.env
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`
exec(`git push ${remote} --tags`)
*/
}
run()

0 comments on commit 743410b

Please sign in to comment.