2
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 3 years have passed since last update.

circleciでgitのtagによってworkflowを発火させるときはbranchをignoreしておかないといけない

Posted at

表題の通り。よくマニュアルを読むと書いてあるが、そこを見つけるのに時間がかかったのでメモ。

branchでfilterしてるときはtagに変化あっても発火しないのにtagだけこうなるのは謎。原因知ってる人居たら教えてください。

workflows:
  main:
    jobs:
      - main-jobs # ソースコードの変化があったときに発火する(tagのみpushされたときは発火しない)
  branch:
    jobs:
      - branch-jobs: # branch-test ブランチでのみ発火する
          filters:
            branches:
              only: branch-test
  tag:
    jobs:
      - tag-jobs: # tag-test タグが発行されたときのみ発火する
          filters:
            branches:
              ignore: /.*/ # これ入れないとタグに関係なく発火する
            tags:
              only: tag-test
2
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
2
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?