We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d1967a9 commit 4ef0950Copy full SHA for 4ef0950
.github/workflows/python_wheel_build.yml
@@ -33,11 +33,20 @@ jobs:
33
with:
34
output-dir: ${{ env.WORKDIR }}/wheelhouse
35
36
- - name: Upload wheel to github
+ - name: Set up Python
37
+ uses: actions/setup-python@v5
38
+
39
+ - name: Create PEP503-compliant wheel registry
40
+ run: |
41
+ python -m pip install --upgrade pip
42
+ python -m pip install simple503
43
+ simple503 ${{ env.WORKDIR }}/wheelhouse
44
45
+ - name: Upload wheel registry to github
46
uses: actions/upload-artifact@v4
47
48
name: cibw-wheels-test
- path: ${{ env.WORKDIR }}/wheelhouse/*.whl
49
+ path: ${{ env.WORKDIR }}/wheelhouse/*
50
51
- name: Upload wheel to EOS
52
env:
0 commit comments