Skip to content

Commit 16d271b

Browse files
author
Guowei Hsu
committed
fix ci
1 parent 432fd09 commit 16d271b

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

.github/workflows/run_tests/action.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ runs:
1515
- name: Install lancedb
1616
shell: bash
1717
run: |
18-
pip3 install --extra-index-url https://pypi.fury.io/lance-format/ --extra-index-url https://pypi.fury.io/lancedb/ $(ls target/wheels/lancedb-*.whl)[tests,dev]
18+
pip3 install --extra-index-url https://pypi.fury.io/lance-format/ --extra-index-url https://pypi.fury.io/lancedb/ $(ls target/wheels/lancedbcjk-*.whl)[tests,dev]
1919
- name: Setup localstack for integration tests
2020
if: ${{ inputs.integration == 'true' }}
2121
shell: bash

.github/workflows/upload_wheel/action.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,12 +34,12 @@ runs:
3434
PYPI_TOKEN: ${{ inputs.pypi_token }}
3535
run: |
3636
if [[ ${{ steps.choose_repo.outputs.repo }} == fury ]]; then
37-
WHEEL=$(ls target/wheels/lancedb-*.whl 2> /dev/null | head -n 1)
37+
WHEEL=$(ls target/wheels/lancedbcjk-*.whl 2> /dev/null | head -n 1)
3838
echo "Uploading $WHEEL to Fury"
3939
curl -f -F package=@$WHEEL https://$FURY_TOKEN@push.fury.io/lancedb/
4040
else
4141
twine upload --repository ${{ steps.choose_repo.outputs.repo }} \
4242
--username __token__ \
4343
--password $PYPI_TOKEN \
44-
target/wheels/lancedb-*.whl
44+
target/wheels/lancedbcjk-*.whl
4545
fi

0 commit comments

Comments
 (0)