Skip to content

Commit

Permalink
Fix dist paths
Browse files Browse the repository at this point in the history
  • Loading branch information
arekm committed Sep 4, 2024
1 parent 9b4122f commit f341938
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -92,8 +92,9 @@ jobs:
- name: 🚀 Install wheel
if: matrix.installable == 'wheel'
run: |
pip install dist/Prusa*ETA*Override*-py2.py3-none-any.whl
pip install dist/*.whl
- name: 🚀 Install source tarball
if: matrix.installable == 'sdist'
run: |
pip install dist/Prusa*ETA*Override*-*.tar.gz
sdist=$(ls dist/*.tar.gz | grep -v source)
pip install "$sdist"

0 comments on commit f341938

Please sign in to comment.