Skip to content

Commit

Permalink
fix: sed works differently on macOS as it's the BSD variant
Browse files Browse the repository at this point in the history
  • Loading branch information
Xmader committed Aug 23, 2024
1 parent 4e7596b commit ab8ba46
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/test-and-publish.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -217,7 +217,7 @@ jobs:
run: |
cd ./dist/
for file in *.whl; do
mv "$file" "$(echo "$file" | sed 's/macosx_[0-9]\+_[0-9]\+/macosx_11_0/')";
mv "$file" "$(echo "$file" | sed -E 's/macosx_[0-9]+_[0-9]+/macosx_11_0/')";
done
- name: Upload wheel as CI artifacts
uses: actions/upload-artifact@v3
Expand Down

0 comments on commit ab8ba46

Please sign in to comment.