Skip to content

Commit 4e60438

Browse files
committed
downgrade actions/upload-artifact@3, which breaks merging the artifacts
1 parent c77fd98 commit 4e60438

1 file changed

Lines changed: 5 additions & 5 deletions

File tree

.github/workflows/wheels.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020
- name: Build wheels
2121
run: |
2222
bash .github/workflows/build-wheels.sh
23-
- uses: actions/upload-artifact@v4
23+
- uses: actions/upload-artifact@v3
2424
with:
2525
name: wheels
2626
path: wheelhouse
@@ -41,7 +41,7 @@ jobs:
4141
- name: Build wheels
4242
run: |
4343
docker run --platform linux/arm64 --workdir /src -v ${PWD}:/src ${{ matrix.container }} /bin/bash .github/workflows/build-wheels.sh
44-
- uses: actions/upload-artifact@v4
44+
- uses: actions/upload-artifact@v3
4545
with:
4646
name: wheels
4747
path: wheelhouse
@@ -69,7 +69,7 @@ jobs:
6969
maturin build --release --strip --target universal2-apple-darwin
7070
python3 -m pip install kmedoids --no-index --find-links target/wheels
7171
cd tests && python3 -m unittest discover && cd ..
72-
- uses: actions/upload-artifact@v4
72+
- uses: actions/upload-artifact@v3
7373
with:
7474
name: wheels
7575
path: target/wheels
@@ -95,7 +95,7 @@ jobs:
9595
maturin build --release --strip
9696
python -m pip install kmedoids --no-index --find-links target/wheels
9797
cd tests && python -m unittest discover && cd ..
98-
- uses: actions/upload-artifact@v4
98+
- uses: actions/upload-artifact@v3
9999
with:
100100
name: wheels
101101
path: target/wheels
@@ -107,7 +107,7 @@ jobs:
107107
runs-on: ubuntu-latest
108108
steps:
109109
- name: Collect artifacts
110-
uses: actions/download-artifact@v4
110+
uses: actions/download-artifact@v3
111111
with:
112112
name: wheels
113113
path: wheels/

0 commit comments

Comments
 (0)