Skip to content

Commit 9a6d548

Browse files
committed
ci: fix smoke test wheel selection - pick manylinux on ubuntu runner
1 parent fccec2e commit 9a6d548

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

.github/workflows/release-build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -216,7 +216,7 @@ jobs:
216216
- name: Smoke-test the wheel before publishing
217217
run: |
218218
set -euo pipefail
219-
WHEEL=$(echo dist/qector_decoder_v3-*.whl | cut -d' ' -f1)
219+
WHEEL=$(ls dist/qector_decoder_v3-*linux*.whl | head -1)
220220
python -m venv /tmp/smoke_venv
221221
/tmp/smoke_venv/bin/pip install "$WHEEL"
222222
/tmp/smoke_venv/bin/python -c "

0 commit comments

Comments
 (0)