Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add more robust release scripts #104

Merged
merged 1 commit into from
May 2, 2016
Merged

Conversation

levithomason
Copy link
Collaborator

@levithomason levithomason commented Apr 29, 2016

The current release script always increments the minor to publish. Then it increments the patch but only pushes to github.

The new scripts allow for releasing major, minor, or patch explicitly. Additionally, there are safeguards if you're not logged into NPM or if you do not have write access as a collaborator. These prevent you from accidentally bumping/tagging/committing/pushing and then failing on publish.

Not logged in

When not logged in, prevent bump/tag/commit/push success with publish fail:

› npm logout
› npm run release:patch

You must be logged into NPM to publish, run "npm login" first.

No write access

When not a contributor with write access, prevent bump/tag/commit/push success with publish fail:

› npm run release:patch

fakeuser does not have NPM write access. Request access from one of these fine folk:

finnpauls <derfinn@gmail.com>
levithomason <me@levithomason.com>
mikeal <mikeal.rogers@gmail.com>

All is well

If all is well, go for it:

› npm run release:patch

Publishing new patch version as levithomason.

npm version patch
git push
git push --follow-tags
npm publish

Prevent bad direct use

The bash release script will not be used directly, however, if it is used directly and improperly then it will show the proper usage:

› bash scripts/release.sh invalid-version

  Usage: bash scripts/release.sh <major|minor|patch>

"scripts": {
"release:major": "bash scripts/release.sh major",
"release:minor": "bash scripts/release.sh minor",
"release:patch": "bash scripts/release.sh patch"
Copy link
Collaborator Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The new scripts for releases.

@levithomason levithomason force-pushed the feature/release-scripts branch 2 times, most recently from edc5d6d to 6af2570 Compare April 29, 2016 21:57
@levithomason levithomason force-pushed the feature/release-scripts branch from 6af2570 to f3df2b5 Compare April 29, 2016 22:06
@levithomason levithomason force-pushed the feature/release-scripts branch from f3df2b5 to 8f32d04 Compare April 29, 2016 22:09
@levithomason levithomason merged commit 137a06d into master May 2, 2016
@levithomason levithomason deleted the feature/release-scripts branch May 2, 2016 19:02
@levithomason levithomason mentioned this pull request May 2, 2016
2 tasks
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant