Steps to produce a new @jkcfg/kubernetes
version:
-
Make sure you are on master, and that it has the latest from
origin/master
:$ git checkout master $ git pull --ff-only origin master
If git complains that it can't fast-forward, you've probably committed something to master by mistake. Consider putting it in a branch to submit as a PR.
-
Bump the version in
package{-lock}.json
, commit the result. -
Tag the commit and push it (with the new commit):
$ git tag -a x.y.z -m "x.y.z release" $ git push --tags origin master
-
Wait for the CI build to push the NPM module
-
Go and edit the release page on GitHub with the list of API changes, new features and fixes.