debug: attempting to fix git error

This commit is contained in:
Mikeal Rogers 2019-09-09 20:43:03 +00:00
parent 6161d61d9b
commit 647e48f01c
1 changed files with 2 additions and 1 deletions

View File

@ -62,12 +62,13 @@ const run = async () => {
console.log(newVersion)
run(`git commit -a --amend --no-edit`)
run(`git fetch`)
run(`git branch tmp`)
run(`git checkout master`)
run(`git merge tmp`)
run(`npm publish --access=public`)
run(`git push`)
run(`git push origin master`)
await git.addTag(newVersion)
await git.pushTags('origin')
}