Merge pull request #1 from olleolleolle/patch-1
Clean up commented-out code
This commit is contained in:
commit
d61abceefc
|
@ -5,11 +5,6 @@ const fs = require('fs')
|
||||||
const path = require('path')
|
const path = require('path')
|
||||||
const { execSync } = require('child_process')
|
const { execSync } = require('child_process')
|
||||||
|
|
||||||
/* Configure git */
|
|
||||||
|
|
||||||
//fs.writeFileSync('git-credentials')
|
|
||||||
//execSync('git
|
|
||||||
|
|
||||||
const event = JSON.parse(fs.readFileSync('/github/workflow/event.json').toString())
|
const event = JSON.parse(fs.readFileSync('/github/workflow/event.json').toString())
|
||||||
|
|
||||||
let messages = event.commits.map(commit => commit.message)
|
let messages = event.commits.map(commit => commit.message)
|
||||||
|
@ -27,8 +22,3 @@ process.stdout.write(execSync(`npm version --allow-same-version=true --git-tag-v
|
||||||
let newVersion = execSync(`npm version --git-tag-version=false ${version}`).toString()
|
let newVersion = execSync(`npm version --git-tag-version=false ${version}`).toString()
|
||||||
console.log(newVersion)
|
console.log(newVersion)
|
||||||
process.stdout.write(execSync(`npm publish --access=public`))
|
process.stdout.write(execSync(`npm publish --access=public`))
|
||||||
/*
|
|
||||||
process.stdout.write(execSync(`git tag -a ${newVersion} -m "Created by merge-release.\n\n##Changelog:\n${messages.join('\n')}"`))
|
|
||||||
process.stdout.write(execSync(`git push --tags`))
|
|
||||||
*/
|
|
||||||
// npm version minor && npm publish --access=public && git push --tags
|
|
||||||
|
|
Loading…
Reference in New Issue