action-conventional-commits/CONTRIBUTING.md

12 lines
318 B
Markdown
Raw Normal View History

2022-06-12 19:15:00 +02:00
## Releasing a New Version
First, build all the code via `yarn build`.
Secondly, commit all of the changes you have locally (even the changes in `dist` folder) and then use the following commands to create a tag and push / release everything:
2020-06-11 07:50:40 +02:00
```
git tag -a -m "Release v1.0.19" v1.0.19
git push --follow-tags
```
2022-06-12 19:15:00 +02:00