Skip to content

Commit 1e26691

Browse files
Update actions
Signed-off-by: Jean-Christophe Morin <[email protected]>
1 parent 487cc1f commit 1e26691

File tree

1 file changed

+7
-12
lines changed

1 file changed

+7
-12
lines changed

.github/workflows/wheel.yaml

Lines changed: 7 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -30,13 +30,7 @@ jobs:
3030
steps:
3131
- uses: actions/checkout@v4
3232

33-
# - uses: actions/download-artifact@v3
34-
# if: ${{ matrix.os == 'windows-latest' }}
35-
# with:
36-
# name: launchers
37-
# path: launcher
38-
39-
- uses: actions/setup-python@v4
33+
- uses: actions/setup-python@v5
4034
with:
4135
python-version: 3.11
4236

@@ -49,10 +43,10 @@ jobs:
4943
env:
5044
PYTHON_PLAT_NAME: ${{ matrix.arch }}
5145

52-
- uses: actions/upload-artifact@v3
46+
- uses: actions/upload-artifact@v4
5347
with:
5448
path: dist
55-
name: wheels
49+
name: wheels-${{ matrix.arch }}
5650

5751
- uses: ilammy/msvc-dev-cmd@v1
5852
if: ${{ matrix.os == 'windows-latest' }}
@@ -85,13 +79,14 @@ jobs:
8579
steps:
8680
- uses: actions/checkout@v4
8781

88-
- uses: actions/setup-python@v4
82+
- uses: actions/setup-python@v5
8983
with:
9084
python-version: 3.11
9185

92-
- uses: actions/download-artifact@v3
86+
- uses: actions/download-artifact@v4
9387
with:
94-
name: wheels
88+
pattern: 'wheels-*'
89+
merge-multiple: true
9590
path: wheels
9691

9792
- name: Install wheel

0 commit comments

Comments
 (0)