Skip to content

Commit 7afcf17

Browse files
committed
Use actions v3 to let artifacts to have same name
1 parent 60e496a commit 7afcf17

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

.github/workflows/build.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
python-version: ["3.10"]
1313

1414
steps:
15-
- uses: actions/checkout@v4
15+
- uses: actions/checkout@v3
1616
with:
1717
submodules: 'recursive'
1818

.github/workflows/cibuildwheels.yml

+5-5
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ jobs:
4848

4949
steps:
5050
- name: Checkout repo
51-
uses: actions/checkout@v4
51+
uses: actions/checkout@v3
5252
with:
5353
submodules: 'recursive'
5454

@@ -73,7 +73,7 @@ jobs:
7373
# CIBW_CONFIG_SETTINGS: "--build-option=-DDEACTIVATE_AVX512:BOOL=YES"
7474

7575
- name: Upload wheels
76-
uses: actions/upload-artifact@v4
76+
uses: actions/upload-artifact@v3
7777
with:
7878
path: ./wheelhouse/*.whl
7979

@@ -91,7 +91,7 @@ jobs:
9191
arch: x86
9292

9393
steps:
94-
- uses: actions/checkout@v4
94+
- uses: actions/checkout@v3
9595
with:
9696
submodules: 'recursive'
9797

@@ -110,7 +110,7 @@ jobs:
110110
python -m build --sdist
111111
112112
- name: Upload sdist package
113-
uses: actions/upload-artifact@v4
113+
uses: actions/upload-artifact@v3
114114
with:
115115
path: dist/*.tar.gz
116116

@@ -136,7 +136,7 @@ jobs:
136136
# Only upload wheels when tagging (typically a release)
137137
if: startsWith(github.event.ref, 'refs/tags')
138138
steps:
139-
- uses: actions/download-artifact@v4
139+
- uses: actions/download-artifact@v3
140140
with:
141141
name: artifact
142142
path: dist

0 commit comments

Comments
 (0)