Skip to content

Commit fa0448d

Browse files
committed
shellcheck complaining
1 parent 6f44caf commit fa0448d

1 file changed

Lines changed: 8 additions & 4 deletions

File tree

.github/workflows/publish_testpypi.yml

Lines changed: 8 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -34,11 +34,15 @@ jobs:
3434
# don't modify sync file! messes up version!
3535
- run: uv sync --all-extras --frozen # does order matter?
3636
- 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
3742
- 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
43+
run: |
44+
WHEEL_PATH=$(ls dist/kaleido-*-py3-none-any.whl)
45+
uv pip install "$WHEEL_PATH"
4246
- run: uv run --no-sync kaleido_get_chrome -v # --i ${{ matrix.chrome_v }}
4347
- name: Diagnose
4448
run: uv run --no-sync choreo_diagnose --no-run

0 commit comments

Comments
 (0)