Skip to content

Commit

Permalink
Fix PyPi publish Verify wheel installation command
Browse files Browse the repository at this point in the history
  • Loading branch information
andrew000 committed Oct 27, 2024
1 parent 9335bd9 commit b58738b
Showing 1 changed file with 1 addition and 5 deletions.
6 changes: 1 addition & 5 deletions .github/workflows/pypi-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,11 +35,7 @@ jobs:
run: uv build

- name: Verify wheel installation
run: uv run --verbose \
--with ./dist/$(find ./dist/*.whl -printf "%f") \
--no-project \
--refresh-package ftl_extract -- \
python -c "import ftl_extract; print(ftl_extract.__version__)"
run: uv run --verbose --with ./dist/$(find ./dist/*.whl -printf "%f") --no-project --refresh-package ftl_extract -- python -c "import ftl_extract; print(ftl_extract.__version__)"

- name: 🐍 Publish distribution 📦
run: uv publish

0 comments on commit b58738b

Please sign in to comment.