We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5648721 commit 6c5ccb8Copy full SHA for 6c5ccb8
1 file changed
.github/workflows/paddle_wheel.yaml
@@ -63,6 +63,14 @@ jobs:
63
export BUILD_AGAINST_ALL_FFMPEG_FROM_S3=1
64
python -m build --wheel -vvv --no-isolation
65
66
+ - name: Repair wheel
67
+ run: |
68
+ pip install auditwheel
69
+ auditwheel repair dist/*.whl --plat manylinux_2_28_x86_64 -w wheelhouse/
70
+ rm dist/*.whl
71
+ mv wheelhouse/*.whl dist/
72
+ rmdir wheelhouse
73
+
74
- name: Upload wheel artifact
75
uses: actions/upload-artifact@v5
76
with:
0 commit comments