Skip to content

Commit 30cc12b

Browse files
author
Tom Augspurger
committed
[CD]: Fixed release script
1 parent 1a61bce commit 30cc12b

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/release.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,12 +20,12 @@ jobs:
2020
- name: Install release dependencies
2121
run: |
2222
python -m pip install --upgrade pip
23-
pip install setuptools wheel twine
23+
pip install setuptools wheel twine build
2424
2525
- name: Build and publish package
2626
env:
2727
TWINE_USERNAME: ${{ secrets.PYPI_USER }}
2828
TWINE_PASSWORD: ${{ secrets.PYPI_PASSWORD }}
2929
run: |
30-
python setup.py sdist bdist_wheel
30+
python -m build
3131
twine upload dist/*

0 commit comments

Comments
 (0)