Skip to content

Commit

Permalink
fix tag expressions in python-package.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
reece committed Sep 2, 2024
1 parent 80624c9 commit 0db64ff
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions .github/workflows/python-package.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,12 @@ name: Python package
on:
push:
tags:
- '[0-9]+.[0-9]+.[0-9]+' # release
- '[0-9]+.[0-9]+.[0-9]+(a|b|rc)[0-9]+' # no dot before alpha, beta, or rc releases
- '[0-9]+.[0-9]+.[0-9]+\.(dev|post)[0-9]+' # dot before dev or post (not semver compliant)
- '[0-9]+.[0-9]+.[0-9]+' # release
- '[0-9]+.[0-9]+.[0-9]+a[0-9]+' # alpha
- '[0-9]+.[0-9]+.[0-9]+b[0-9]+' # beta
- '[0-9]+.[0-9]+.[0-9]+rc[0-9]+' # release candidate
- '[0-9]+.[0-9]+.[0-9]+.dev[0-9]+' # dev (not semver compliant)
- '[0-9]+.[0-9]+.[0-9]+.post[0-9]+' # post (not semver compliant)
pull_request:

jobs:
Expand Down

0 comments on commit 0db64ff

Please sign in to comment.