Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -126,7 +126,7 @@ jobs:

- name: Run sample demo in clean environment
run: |
pip install ./wheels/linux/jecq-0.0.1-py3-none-any.whl
pip install "$(ls ./wheels/linux/jecq-*.whl | head -n1)"
pip install -r ./demos/requirements.txt
# Run demo script
python3 ./demos/demo_sample_search.py
Expand Down Expand Up @@ -162,10 +162,10 @@ jobs:
run: |
echo "Listing wheels-linux:"
ls -l wheels-linux
mv wheels-linux/jecq-0.0.1-py3-none-any.whl wheels-linux/jecq-linux.whl
mv wheels-linux/jecq-*.whl wheels-linux/jecq-linux.whl
echo "Listing wheels-windows:"
ls -l wheels-windows
mv wheels-windows/jecq-0.0.1-py3-none-any.whl wheels-windows/jecq-windows.whl
mv wheels-windows/jecq-*.whl wheels-windows/jecq-windows.whl

- name: Create draft release
uses: softprops/action-gh-release@v1
Expand Down