fix: explicit origin

This commit is contained in:
Mikeal Rogers 2019-09-10 00:25:53 +00:00
parent e8b618992b
commit a1033ac280
1 changed files with 1 additions and 1 deletions

View File

@ -58,7 +58,7 @@ const run = async () => {
console.log(newVersion)
exec(`git commit -a --amend --no-edit`)
exec(`npm publish --access=public`)
exec(`git push`)
exec(`git push origin master`)
await git.addTag(newVersion)
await git.pushTags('origin')
}