Skip to content

Commit

Permalink
ci(yarn): update release:* jobs
Browse files Browse the repository at this point in the history
- modifiy sequence of release tasks
- don't commit CHANGELOG.md before version
  • Loading branch information
johannrichard committed Dec 5, 2020
1 parent f6c28a7 commit db89298
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions package.json
Expand Up @@ -28,9 +28,9 @@
"changelog": "changelog",
"release:candidate": "yarn version --prerelease --preid rc --no-git-tag-version && yarn publish --tag next",
"release:nightly": "yarn version --prerelease --preid nightly --no-git-tag-version && yarn publish --tag nightly",
"release:major": "yarn run prepare && changelog -M && git add CHANGELOG.md && git commit -m 'ci(docs): updated CHANGELOG.md' && yarn version --major && git push origin && git push origin --tags",
"release:minor": "yarn run prepare && changelog -m && git add CHANGELOG.md && git commit -m 'ci(docs): updated CHANGELOG.md' && yarn version --minor && git push origin && git push origin --tags",
"release:patch": "yarn run prepare && changelog -p && git add CHANGELOG.md && git commit -m 'ci(docs): updated CHANGELOG.md' && yarn version --patch && git push origin && git push origin --tags"
"release:major": "yarn run prepare && changelog -M && git add CHANGELOG.md && yarn version --major && git push origin && git push origin --tags",
"release:minor": "yarn run prepare && changelog -m && git add CHANGELOG.md && yarn version --minor && git push origin && git push origin --tags",
"release:patch": "yarn run prepare && changelog -p && git add CHANGELOG.md && yarn version --patch && git push origin && git push origin --tags"
},
"keywords": [
"homebridge-plugin",
Expand Down

0 comments on commit db89298

Please sign in to comment.