I’m trying to run my deployment jobs ONLY when a git tag is pushed. This is actually similar to the documentation: " The deploy
job runs for no branches and only tags starting with ‘config-test’"
https://circleci.com/docs/2.0/workflows/#executing-workflows-for-a-git-tag
My configuration is basically the same (only the job names are different) but on every push all depoyment jobs run. Here is my config:
workflows:
version: 2
workflow_deploy_library:
jobs:
# build and deploy libraries
- auth_lib_release:
filters:
branches:
ignore: /.*/
tags:
# all tags starting with "auth/v"
only: /^auth\/v.*/
What am I doing wrong? I simply don’t get it or it is a bug -.-’