I have following gitlab-ci conf. file:
before_script: - echo %CI_BUILD_REF% - echo %CI_PROJECT_DIR% stages: - createPBLs - build - package creat
You need to use only syntax:
only: - tags
This would trigger for any Tag being pushed. If you want to be a bit more specific you can do:
Tag
only: - /Ticket\/ticket\_.*/
which would build for any push with the Ticket/ticket_ tag.
Ticket/ticket_