Hello everyone.
I’m using the gitea-release plugin in my pipeline.
When the steps are not promotion only, the pipeline works fine, the release was created and files uploaded. But when limiting it to run in promotion, I got this error:
msg="The Gitea Release plugin is only available for tags"
To avoid misunderstanding, this is what I’ve done to get this error.
- a tested working pipeline using gitea-release plugin (that the step has no trigger)
- add trigger to the step that using gitea-release plugin:
when:
event:
- promote
- trigger the build with a tag push(
git push origin --tags
). - promote the build.
steps 1-3 works fine, step 4 got the error.