Skip to content

Commit 82e8a4e

Browse files
authored
ci: fix publish
1 parent 9012515 commit 82e8a4e

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

.github/workflows/publish.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ name: Publish to PyPI
33
on:
44
push:
55
tags:
6-
- '[0-9]+.[0-9]+.[0-9]+'
6+
- 'v[0-9]+.[0-9]+.[0-9]+'
77

88
jobs:
99
build:
@@ -21,6 +21,7 @@ jobs:
2121
- name: Install dependencies
2222
run: |
2323
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
2425
2526
- name: Build package
2627
run: python3 -m build

0 commit comments

Comments
 (0)