Skip to content

Commit

Permalink
Merge pull request #62 from datacamp/fix-ci
Browse files Browse the repository at this point in the history
chore: fix ci
  • Loading branch information
rikbw authored Sep 9, 2024
2 parents adf42d3 + 0fde631 commit c4c4bbc
Showing 1 changed file with 13 additions and 2 deletions.
15 changes: 13 additions & 2 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,9 +27,20 @@ jobs:
pipenv install twine
pipenv run twine upload --verbose --repository pypi dist/*
workflows:
build:
pr:
jobs:
- build-and-test
- build-and-test:
filters:
branches:
ignore: master
publish:
jobs:
- build-and-test:
filters:
tags:
only: /^v\d+\.\d+\.\d+$/
branches:
ignore: /.*/
- publish:
requires:
- build-and-test
Expand Down

0 comments on commit c4c4bbc

Please sign in to comment.