We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e697aef commit e8debfbCopy full SHA for e8debfb
.github/workflows/tests.yml
@@ -59,8 +59,19 @@ jobs:
59
python -c "import iscc_core; iscc_core.conformance_selftest()"
60
python -c "import iscc_core; print(iscc_core.turbo())"
61
62
- - name: Collect Wheel
+ - name: Upload Wheel
63
uses: actions/upload-artifact@v4
64
with:
65
- name: wheel-${{ matrix.os }}-${{ matrix.python-version }}
66
- path: dist/*.whl
+ name: dist-${{ matrix.os }}-${{ matrix.python-version }}
+ 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
0 commit comments