Skip to content

Commit

Permalink
Fixed automatic PyPI deployments
Browse files Browse the repository at this point in the history
The regex was wrong (Asphalt's git tags don't start with "v").
  • Loading branch information
agronholm committed Nov 25, 2017
1 parent fc963d5 commit 9d0f498
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ sudo: false

stages:
- name: deploy to pypi
if: type = push AND tag =~ ^v\d+\.\d+\.\d+
if: type = push AND tag =~ ^\d+\.\d+\.\d+

jobs:
fast_finish: true
Expand Down

0 comments on commit 9d0f498

Please sign in to comment.