Skip to content

Commit

Permalink
Fix RELEASING notes
Browse files Browse the repository at this point in the history
  • Loading branch information
cheungpat committed May 23, 2017
1 parent f768fbe commit c8d9646
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion RELEASING.md
Original file line number Diff line number Diff line change
Expand Up @@ -130,9 +130,11 @@ $ git add CHANGELOG.md
## Changing the version number and releasing all packages to npm using lerna.
$ npm run lerna bootstrap # make sure dependencies are linked
$ npm run prepublish # Build all packages
$ npm run lerna publish -- --repo-version $SKYGEAR_VERSION -m "Update CHANGELOG for v$SKYGEAR_VERSION" # Publish all packages
$ npm run lerna publish -- --skip-git --repo-version $SKYGEAR_VERSION # Publish all packages

## Tag and push commit
$ git add CHANGELOG.md lerna.json packages/*/package.json
$ git commit -m "Update CHANGELOG for $SKYGEAR_VERSION"
$ git tag -a v$SKYGEAR_VERSION -s -u $KEY_ID -m "Release v$SKYGEAR_VERSION"
$ git push --follow-tags origin v$SKYGEAR_VERSION
$ git push origin
Expand Down

0 comments on commit c8d9646

Please sign in to comment.