Skip to content

Commit aec7a36

Browse files
authored
fix, ci: release workflow was broken (#1179)
1 parent b62d5a5 commit aec7a36

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
@@ -21,12 +21,12 @@ jobs:
2121
- name: Install release dependencies
2222
run: |
2323
python -m pip install --upgrade pip
24-
pip install setuptools wheel twine
24+
pip install build twine
2525
2626
- name: Build and publish package
2727
env:
2828
TWINE_USERNAME: ${{ secrets.PYPI_STACUTILS_USERNAME }}
2929
TWINE_PASSWORD: ${{ secrets.PYPI_STACUTILS_PASSWORD }}
3030
run: |
31-
python setup.py sdist bdist_wheel
31+
python -m build
3232
twine upload dist/*

0 commit comments

Comments
 (0)