Skip to content

Commit

Permalink
Run CI on tagged commits
Browse files Browse the repository at this point in the history
CircleCI defaults to not running for tags, so any dependent jobs need an
explicit, permissive tag filter in order to run. See
https://circleci.com/docs/2.0/configuration-reference#tags.
  • Loading branch information
dnrce authored and jjcarstens committed Jun 27, 2022
1 parent 8c1dc08 commit c065e81
Showing 1 changed file with 19 additions and 1 deletion.
20 changes: 19 additions & 1 deletion .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -275,28 +275,46 @@ workflows:
version: 2
pipeline:
jobs:
- fetch_deps
- fetch_deps:
filters:
tags:
only: /.*/
- test_elixir:
context: org-global
requires:
- fetch_deps
filters:
tags:
only: /.*/
# - test_javascript:
# context: org-global
# requires:
# - fetch_deps
# filters:
# tags:
# only: /.*/
- build-www:
context: org-global
requires:
- test_elixir
# - test_javascript
filters:
tags:
only: /.*/
- build-device:
context: org-global
requires:
- test_elixir
filters:
tags:
only: /.*/
- build-api:
context: org-global
requires:
- test_elixir
filters:
tags:
only: /.*/
- push-www:
context: org-global
requires:
Expand Down

0 comments on commit c065e81

Please sign in to comment.