Skip to content

Commit

Permalink
Fix CI config.
Browse files Browse the repository at this point in the history
  • Loading branch information
jdeanwallace committed Mar 22, 2024
1 parent 827ab10 commit 69e8b29
Showing 1 changed file with 9 additions and 3 deletions.
12 changes: 9 additions & 3 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
version: 2.1
_definitions:
- &semver_pattern /^\d+\.\d+\.\d+.*/
executors:
python:
docker:
Expand Down Expand Up @@ -49,13 +51,17 @@ jobs:
workflows:
main:
jobs:
- test-python
- test-python:
filters:
tags:
only: *semver_pattern
- publish-python-package:
context:
- jinjabread-prod
requires:
- test-python
context: jinjabread-prod
filters:
tags:
only: /[0-9]+\.[0-9]+\.[0-9]+.*/
only: *semver_pattern
branches:
ignore: /.*/

0 comments on commit 69e8b29

Please sign in to comment.