Skip to content

Commit f756a4a

Browse files
committed
Fix download artifact
1 parent bf0b14c commit f756a4a

File tree

2 files changed

+11
-4
lines changed

2 files changed

+11
-4
lines changed

.github/workflows/cibuildwheel-impl/action.yml

Lines changed: 8 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -8,11 +8,15 @@ inputs:
88
runs:
99
using: "composite"
1010
steps:
11-
- name: Build wheel
12-
uses: pypa/[email protected]
13-
env:
14-
CIBW_BUILD: ${{ inputs.build-tag }}
11+
# - name: Build wheel
12+
# uses: pypa/[email protected]
13+
# env:
14+
# CIBW_BUILD: ${{ inputs.build-tag }}
1515

16+
- name: Mock wheel
17+
run: |
18+
mkdir -p wheelhouse
19+
touch wheelhouse/${{ inputs.build-tag }}.whl
1620
- name: Upload wheel
1721
uses: actions/upload-artifact@v4
1822
with:

.github/workflows/python_wheel_build.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,8 @@ jobs:
3333

3434
- name: Download produced wheels
3535
uses: actions/download-artifact@v4
36+
with:
37+
merge-multiple: true
3638

3739
- name: Install Kerberos utilities
3840
run: sudo apt-get install -y krb5-user
@@ -47,6 +49,7 @@ jobs:
4749
run: |
4850
mkdir -p wheelhouse
4951
mv *.whl wheelhouse
52+
ls wheelhouse >> $GITHUB_OUTPUT
5053
python -m pip install --upgrade pip
5154
python -m pip install --user simple503
5255
simple503 wheelhouse

0 commit comments

Comments
 (0)