- Decide upon the next version of your release.
NOTE: We don't store the version in
bower.json(since they pull from the latest published tag), but we do put it inpackage.json
-
Edit the
package.jsonfile, and update the version based on your decision in 1, but do not commit it. -
Follow the steps below to publish a release to GitHub.
git add package.json
git add -f out/*
git checkout head
git commit -m "Version {version} for distribution"
git tag -a v{version} -m "Add tag v{verson}"
git checkout master
git push origin --tags