Skip to content
Snippets Groups Projects
Commit 5e3830a4 authored by Georg Krause's avatar Georg Krause
Browse files

fix(release): Fix release process to properly include changelog

Part-of: <!94>
parent 1ea1e224
No related branches found
No related tags found
1 merge request!94fix(release): Fix release process to properly include changelog
Pipeline #33992 passed with stages
in 2 minutes and 45 seconds
version-git-tag false
......@@ -92,8 +92,11 @@ Funkwhale UI components should be properly documented before release to make dev
## Release a new version
```sh
yarn version
export NEW_VERSION=0.4.0
yarn version --new-version $NEW_VERSION
yarn changelog
git add CHANGELOG.md && git commit --amend
git add package.json CHANGELOG.md
git commit -m "chore: bump version and update changelog"
git tag $NEW_VERSION
git push --tags && git push
```
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment