Skip to content

Commit

Permalink
actions: OSX does not support smart wildcards
Browse files Browse the repository at this point in the history
Signed-off-by: Matteo Cafasso <noxdafox@gmail.com>
  • Loading branch information
noxdafox committed Sep 5, 2023
1 parent 6848a74 commit 3a20a9c
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions .github/workflows/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -80,9 +80,8 @@ jobs:
make install-clips
- name: Repair wheels
run: |
for whl in dist/*.whl; do
echo $whl
delocate-wheel -v "$whl"
for whl in $(ls dist | grep .whl); do
delocate-wheel -v "dist/$whl"
done
- name: Store build artifacts
uses: actions/upload-artifact@v3
Expand Down

0 comments on commit 3a20a9c

Please sign in to comment.