Skip to content

Commit

Permalink
Exclude linux *.whl files from publishing to PyPI (#845)
Browse files Browse the repository at this point in the history
This is needed since we don't have a workflow to build manylinux wheels
at moment, and [it's non-trivial to implement
that](https://github.com/pypa/manylinux?tab=readme-ov-file#docker-images)
  • Loading branch information
ShukantPal authored Feb 2, 2024
1 parent aaba104 commit 253ab8e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/publish-pyktx.yml
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ jobs:
https://api.github.com/repos/KhronosGroup/KTX-Software/releases/latest
- name: Filter out pyktx- assets
run: |
jq '.assets | map(select(.name | startswith("pyktx-"))) | map(.browser_download_url)' < latest.json > pyktx.json
jq '.assets | map(select(.name | startswith("pyktx-") and (contains("linux") | not))) | map(.browser_download_url)' < latest.json > pyktx.json
- name: Create dist directory
run: |
mkdir dist
Expand Down

0 comments on commit 253ab8e

Please sign in to comment.