Skip to content
This repository has been archived by the owner on Aug 3, 2023. It is now read-only.

Commit

Permalink
Fix circleci config to run on tags (#33)
Browse files Browse the repository at this point in the history
* Fix circleci config to run on tags

* Update config.yml
  • Loading branch information
stlava authored Dec 16, 2021
1 parent fe3e5ea commit c7317f3
Showing 1 changed file with 12 additions and 3 deletions.
15 changes: 12 additions & 3 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,18 @@ workflows:
version: 2
test:
jobs:
- test-3.9
- test-3.8
- test-3.7
- test-3.9:
filters:
tags:
only: /[0-9]+(\.[0-9]+)*/
- test-3.8:
filters:
tags:
only: /[0-9]+(\.[0-9]+)*/
- test-3.7:
filters:
tags:
only: /[0-9]+(\.[0-9]+)*/
- upload:
requires: [test-3.7, test-3.8, test-3.9]
filters:
Expand Down

0 comments on commit c7317f3

Please sign in to comment.