Skip to content

Commit

Permalink
Fix the deploy script
Browse files Browse the repository at this point in the history
  • Loading branch information
aMarcireau committed Oct 8, 2023
1 parent 0e00aa9 commit 2987e7a
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/publish_python.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,19 +14,19 @@ jobs:
- uses: actions/setup-python@v4
with:
python-version: '3.11'
- run: python setup.py sdist
- run: python -m build . --sdist
working-directory: python
- uses: actions/upload-artifact@v3
with:
name: undr-sdist
name: dist
path: python/dist/*.tar.gz
upload_pypi:
name: Upload to PyPI
runs-on: ubuntu-latest
steps:
- uses: actions/download-artifact@v3
with:
name: undr-sdist
name: dist
path: dist
- uses: pypa/gh-action-pypi-publish@v1.5.0
with:
Expand Down

0 comments on commit 2987e7a

Please sign in to comment.