Skip to content

Commit

Permalink
Merge pull request #6260 from seadowg/release-job
Browse files Browse the repository at this point in the history
Create dependency backup for release tags
  • Loading branch information
seadowg authored Jul 11, 2024
2 parents edcffcc + c670d15 commit 4cbb2a0
Showing 1 changed file with 13 additions and 8 deletions.
21 changes: 13 additions & 8 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -345,14 +345,6 @@ workflows:
commit:
jobs:
- compile
- create_dependency_backup:
requires:
- compile
filters:
tags:
only: /^v((20)[0-9]{2})\.\d+\.\d+$/ # matches semvers like v1.2.3
branches:
ignore: /.*/
- check_quality:
requires:
- compile
Expand Down Expand Up @@ -393,3 +385,16 @@ workflows:
- test_instrumented:
requires:
- compile

release:
jobs:
- compile:
filters:
tags:
only: /^v((20)[0-9]{2})\.\d+\.\d+$/ # matches semvers like v1.2.3
branches:
ignore: /.*/
- create_dependency_backup:
requires:
- compile

0 comments on commit 4cbb2a0

Please sign in to comment.