Skip to content

Commit

Permalink
fix: forcing release undraft on tag
Browse files Browse the repository at this point in the history
  • Loading branch information
JulesFaucherre committed Nov 21, 2023
1 parent 294a186 commit e027528
Showing 1 changed file with 27 additions and 10 deletions.
37 changes: 27 additions & 10 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -652,18 +652,35 @@ workflows:
- devex-release

Undraft release:
when:
matches:
pattern: ^\d+\.\d+\.\d+$
value: << pipeline.git.tag >>
jobs:
- Build Linux x86_64
- Build Linux arm64
- Build MacOS x86_64
- Build MacOS arm64
- Build Windows
- Copy JSON schema
- Build Linux x86_64:
filters:
tags:
only: /\d+\.\d+\.\d+/
- Build Linux arm64:
filters:
tags:
only: /\d+\.\d+\.\d+/
- Build MacOS x86_64:
filters:
tags:
only: /\d+\.\d+\.\d+/
- Build MacOS arm64:
filters:
tags:
only: /\d+\.\d+\.\d+/
- Build Windows:
filters:
tags:
only: /\d+\.\d+\.\d+/
- Copy JSON schema:
filters:
tags:
only: /\d+\.\d+\.\d+/
- Upload artifacts:
filters:
tags:
only: /\d+\.\d+\.\d+/
requires:
- Build Linux x86_64
- Build Linux arm64
Expand Down

0 comments on commit e027528

Please sign in to comment.