Skip to content

Commit e9aaf6c

Browse files
committed
add dynamic versioning
1 parent 87edfd2 commit e9aaf6c

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

.github/workflows/publish_pypi.yml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,8 @@ jobs:
1010
steps:
1111
- name: Check out the repository
1212
uses: actions/checkout@v3
13+
with:
14+
1315

1416
- name: Set up Python
1517
uses: actions/setup-python@v3
@@ -22,7 +24,9 @@ jobs:
2224
2325
- name: Install dependencies
2426
run: |
25-
poetry install
27+
pip install pipx
28+
pipx install poetry
29+
pipx inject poetry "poetry-dynamic-versioning[plugin]"
2630
2731
- name: Publish package to PyPI
2832
run: |

0 commit comments

Comments
 (0)