Skip to content

Commit e8debfb

Browse files
committed
Add download artifacts go CI
1 parent e697aef commit e8debfb

File tree

1 file changed

+14
-3
lines changed

1 file changed

+14
-3
lines changed

.github/workflows/tests.yml

+14-3
Original file line numberDiff line numberDiff line change
@@ -59,8 +59,19 @@ jobs:
5959
python -c "import iscc_core; iscc_core.conformance_selftest()"
6060
python -c "import iscc_core; print(iscc_core.turbo())"
6161
62-
- name: Collect Wheel
62+
- name: Upload Wheel
6363
uses: actions/upload-artifact@v4
6464
with:
65-
name: wheel-${{ matrix.os }}-${{ matrix.python-version }}
66-
path: dist/*.whl
65+
name: dist-${{ matrix.os }}-${{ matrix.python-version }}
66+
path: dist
67+
68+
download:
69+
needs: tests
70+
runs-on: ubuntu-latest
71+
steps:
72+
- name: Download All Artifacts
73+
uses: actions/download-artifact@v4
74+
with:
75+
pattern: dist-*
76+
merge-multiple: true
77+
path: dist

0 commit comments

Comments
 (0)