I am not sure how I can maintain in GitLab a development version, i.e. a section where beta testers can download binaries). So far, i came up with the following approach (I did not test it yet):
Create or update a tag “dev” and manually add the binaries via the following steps:
- git push origin :refs/tags/dev
- git tag -fa dev
- git push origin master --tags
- manually update binaries
Is it the way to go? Before to implement this approach I would like to check if there are official/recommended approach
Thank you in advance for your help