Closed
Description
I create this issue to follow the conversation in #143
The idea would be the following. Every time a new stable release is created. We need to dump the version to the release with beta. So, lets say that we just published 0.6.0. After that publish we need to create a new commit that changes the version to 0.7.0-beta.
When that commit is merged into master, CI will do the following:
- git config --global -l
- git config --global user.email [email protected]
- git config --global user.name CircleCI
- npm version prerelease # (This will bump version to 0.6.0-beta.0, 1, 2, etc)
- npm publish --tag next # (Tag the version with next so that users can do `npm install sequelize-typescript@next`
- git push --follow-tags # (Push version bump to master with tags)
For doing this, the ssh key that is in travis should have write access to the repo. Maybe we can follow this conversation in another commit.
Metadata
Metadata
Assignees
Labels
No labels