We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6f44caf commit fa0448dCopy full SHA for fa0448d
1 file changed
.github/workflows/publish_testpypi.yml
@@ -34,11 +34,15 @@ jobs:
34
# don't modify sync file! messes up version!
35
- run: uv sync --all-extras --frozen # does order matter?
36
- run: uv build
37
+ #- name: Reinstall from wheel
38
+ # run: >
39
+ # uv pip install dist/kaleido-$(uv
40
+ # run --no-sync --with setuptools-git-versioning
41
+ # setuptools-git-versioning)-py3-none-any.whl
42
- name: Reinstall from wheel
- run: >
- uv pip install dist/kaleido-$(uv
- run --no-sync --with setuptools-git-versioning
- setuptools-git-versioning)-py3-none-any.whl
43
+ run: |
44
+ WHEEL_PATH=$(ls dist/kaleido-*-py3-none-any.whl)
45
+ uv pip install "$WHEEL_PATH"
46
- run: uv run --no-sync kaleido_get_chrome -v # --i ${{ matrix.chrome_v }}
47
- name: Diagnose
48
run: uv run --no-sync choreo_diagnose --no-run
0 commit comments