How do I run a .gitlab-ci.yml job only on a tagged Master branch?
job: script: - echo \"Do something\" only: - master - tags
The
This behavior is not yet supported by gitlab-ci, although there is an open issue to add it.
In the meantime I've also heard anecdotal reports that
only: - master only: - tags
will get the job done (as well as anecdotal reports that it won't).