gh-action-bump-version/merge-release-run.js

25 lines
944 B
JavaScript
Raw Normal View History

2019-01-26 23:00:32 +00:00
#!/usr/bin/env node
2019-01-27 00:14:12 +00:00
console.log(process.argv)
2019-01-26 22:29:58 +00:00
const fs = require('fs')
2019-02-02 17:07:12 +00:00
const path = require('path')
const { execSync } = require('child_process')
2019-01-26 23:48:46 +00:00
const event = JSON.parse(fs.readFileSync('/github/workflow/event.json').toString())
let messages = event.commits.map(commit => commit.message)
let version = 'patch'
if (messages.map(message => message.includes('BREAKING CHANGE')).includes(true)) {
version = 'major'
} else if (messages.map(message => message.toLowerCase().startsWith('feat')).includes(true)) {
version = 'minor'
2019-01-26 23:48:46 +00:00
}
2019-02-02 17:07:12 +00:00
let pkg = require(path.join(process.cwd(), 'package.json'))
2019-01-26 23:31:18 +00:00
let current = execSync(`npm view ${pkg.name} version`).toString()
2019-01-26 23:40:54 +00:00
process.stdout.write(execSync(`npm version --allow-same-version=true --git-tag-version=false ${current} `))
2019-01-26 23:48:46 +00:00
let newVersion = execSync(`npm version --git-tag-version=false ${version}`).toString()
console.log(newVersion)
process.stdout.write(execSync(`npm publish --access=public`))