Skip to content

Commit d821c3c

Browse files
authored
Use local wheels (#115)
1 parent 9325336 commit d821c3c

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

.github/workflows/publish.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,8 @@ jobs:
3636
- name: Sanity check that package installs and imports
3737
run: |
3838
echo "Verifying package installs and imports correctly..."
39-
uv run --with tgm-lib --no-project -- python -c "import tgm; print(tgm.__version__)"
39+
uv pip install dist/*.whl
40+
uv run python -c "import tgm; print(tgm.__version__)"
4041
4142
- name: Publish package
4243
uses: pypa/gh-action-pypi-publish@release/v1

0 commit comments

Comments
 (0)