We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4b01c78 commit ddd1ac3Copy full SHA for ddd1ac3
1 file changed
README.md
@@ -213,8 +213,14 @@ Bug reports and pull requests are welcome on GitHub at https://github.com/buildk
213
214
```sh
215
# Version bump the code, tag and push
216
-npm version [major/minor/patch]
217
-git push && git push --tags
+git switch --create prepare-v1-2-3
+npm version --no-git-tag-version v1.2.3
218
+git push
219
+
220
+# Open a pull request, get it merged
221
+git switch main
222
+git tag v1.2.3
223
+git push --tags
224
225
# Publish to the NPM registry
226
npm publish
0 commit comments