We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9012515 commit 82e8a4eCopy full SHA for 82e8a4e
1 file changed
.github/workflows/publish.yml
@@ -3,7 +3,7 @@ name: Publish to PyPI
3
on:
4
push:
5
tags:
6
- - '[0-9]+.[0-9]+.[0-9]+'
+ - 'v[0-9]+.[0-9]+.[0-9]+'
7
8
jobs:
9
build:
@@ -21,6 +21,7 @@ jobs:
21
- name: Install dependencies
22
run: |
23
if [ -f requirements.txt ]; then pip install -r requirements.txt; fi
24
+ if [ -f requirements-dev.txt ]; then pip install -r requirements-dev.txt; fi
25
26
- name: Build package
27
run: python3 -m build
0 commit comments