Commit d873fb34 authored by Titus von Koeller's avatar Titus von Koeller
Browse files

omit macos wheels for now

parent 2a1ff2c0
...@@ -174,7 +174,8 @@ jobs: ...@@ -174,7 +174,8 @@ jobs:
- name: Move and rename wheel files with pattern replacement - name: Move and rename wheel files with pattern replacement
run: | run: |
mkdir -p wheels/ mkdir -p wheels/
find tmp/ -type f -name '*.whl' -print0 | while IFS= read -r -d '' wheel; do # exclude macos wheels for now
find tmp/ -type f -name '*.whl' ! -name '*macos*' -print0 | while IFS= read -r -d '' wheel; do
wheel_filename=$(basename "$wheel") wheel_filename=$(basename "$wheel")
# Remove the gith hash, e.g. `+1234567`, for a stable download link on the multi-backend pre-release # Remove the gith hash, e.g. `+1234567`, for a stable download link on the multi-backend pre-release
cleaned_filename=$(echo "$wheel_filename" | sed -E 's/\+[0-9a-f]{7}-/-/g') cleaned_filename=$(echo "$wheel_filename" | sed -E 's/\+[0-9a-f]{7}-/-/g')
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment