Skip to content

Commit eae7c27

Browse files
committed
Replace glob with version generation
1 parent fca0ad9 commit eae7c27

File tree

1 file changed

+7
-4
lines changed

1 file changed

+7
-4
lines changed

.github/workflows/publish_testpypi.yml

+7-4
Original file line numberDiff line numberDiff line change
@@ -33,12 +33,15 @@ jobs:
3333
- run: git status
3434
# don't modify sync file! messes up version!
3535
- run: uv sync --frozen --all-extras
36-
- run: git restore . # delete uv.lock changest
36+
- run: git restore . # delete uv.lock changest
3737
- run: uv build
3838
- run: uv run --no-sync choreo_get_browser -v --i ${{ matrix.chrome_v }}
39-
- run: uv pip install dist/choreographer*.whl
40-
# should we delete choreographer?
41-
39+
- name: Reinstall from wheel
40+
run: >
41+
uv pip install dist/choreographer-
42+
$(uv run --no-sync --with setuptools-git-versioning
43+
setuptools-git-versioning)
44+
.whl
4245
- run: uv run --no-sync choreo_diagnose --no-run
4346
- name: Test
4447
if: ${{ ! runner.debug && matrix.os != 'ubuntu-latest' }}

0 commit comments

Comments
 (0)