Skip to content

Commit

Permalink
make it work on tag
Browse files Browse the repository at this point in the history
  • Loading branch information
noisekit committed Oct 11, 2023
1 parent fa15fe3 commit 481fa0a
Showing 1 changed file with 9 additions and 5 deletions.
14 changes: 9 additions & 5 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -270,7 +270,10 @@ workflows:
- not: << pipeline.git.tag >>
- << pipeline.git.branch >>
- not:
equal: ['tagged-releases', << pipeline.git.branch >>]
or:
- equal: ['tagged-releases', << pipeline.git.branch >>]
- equal: ['release/lp', << pipeline.git.branch >>]
- equal: ['test-release/lp', << pipeline.git.branch >>]

jobs:
- checks
Expand All @@ -297,10 +300,11 @@ workflows:
release-lp:
when:
and:
- matches:
pattern: '^release-lp-\d{8}.*$'
value: << pipeline.git.tag >>
- equal: ['tagged-releases', << pipeline.git.branch >>]
# - matches:
# pattern: '^release-lp-\d{8}.*$'
# value: << pipeline.git.tag >>
- not: << pipeline.git.branch >> # tags pushed have no branch
# - equal: ['tagged-releases', << pipeline.git.branch >>]
jobs:
- checks
- typecheck
Expand Down

0 comments on commit 481fa0a

Please sign in to comment.