Skip to content

Commit

Permalink
ci: Fix PyPi release workflow (#3747)
Browse files Browse the repository at this point in the history
This should fix the CI when doing a release
  • Loading branch information
math-fehr authored Jan 13, 2025
1 parent 14578f1 commit 3553a77
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/pythonpublish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,9 +18,9 @@ jobs:

- name: Install dependencies
run: |
uv tool install setuptools wheel twine
uv pip install setuptools wheel
- name: Build and publish
run: |
python setup.py sdist bdist_wheel
twine upload -u __token__ -p ${{ secrets.PYPI_XDSL_TOKEN }} dist/*
uv run setup.py sdist bdist_wheel
uv tool run twine upload -u __token__ -p ${{ secrets.PYPI_XDSL_TOKEN }} dist/*

0 comments on commit 3553a77

Please sign in to comment.