## Publish release on Gitlab Before releasing a new version to Gitlab, be sure to note all changes in the [CHANGELOG.md](CHANGELOG.md)-file. Commit, tag and push the changes: ``` git commit -am "test release v1.0.0.4" git tag -a 1.0.0.4 -m "" git push --atomic origin master 1.0.0.4 ``` This will trigger the Gitlab-CI pipeline and publishes a release to the Gitlab release page, including source, a prebuild tarball and the latest changelog. ## Nextcloud app store release The prebuild tarball can be used in the [Nextcloud Appstore](https://apps.nextcloud.com/developer/apps/releases/new) page. The signature can be generated with: ``` openssl dgst -sha512 -sign ~/.nextcloud/certificates/radio.key /path/to/radio.tar.gz | openssl base64 ```