Skip to content

Commit 4ef0950

Browse files
committed
Add PEP503-compliant registry creation
1 parent d1967a9 commit 4ef0950

File tree

1 file changed

+11
-2
lines changed

1 file changed

+11
-2
lines changed

.github/workflows/python_wheel_build.yml

Lines changed: 11 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,11 +33,20 @@ jobs:
3333
with:
3434
output-dir: ${{ env.WORKDIR }}/wheelhouse
3535

36-
- name: Upload wheel to github
36+
- 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
3746
uses: actions/upload-artifact@v4
3847
with:
3948
name: cibw-wheels-test
40-
path: ${{ env.WORKDIR }}/wheelhouse/*.whl
49+
path: ${{ env.WORKDIR }}/wheelhouse/*
4150

4251
- name: Upload wheel to EOS
4352
env:

0 commit comments

Comments
 (0)