summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStefan Behnel <stefan_ml@behnel.de>2021-12-06 11:55:56 +0100
committerStefan Behnel <stefan_ml@behnel.de>2021-12-06 11:55:56 +0100
commit488e21a34259258210f0be92c58618e1ea8a928f (patch)
tree878e80026a93af28a0d882c0f94e274ff26a1568
parent4c4585ce459e258b70dbff6765e841685d4e19fd (diff)
downloadcython-488e21a34259258210f0be92c58618e1ea8a928f.tar.gz
Also upload the musllinux wheels to GH Releases.0.29.25-1
-rw-r--r--.github/workflows/wheel-manylinux.yml6
1 files changed, 4 insertions, 2 deletions
diff --git a/.github/workflows/wheel-manylinux.yml b/.github/workflows/wheel-manylinux.yml
index e9645d791..8e3cdffa4 100644
--- a/.github/workflows/wheel-manylinux.yml
+++ b/.github/workflows/wheel-manylinux.yml
@@ -78,11 +78,13 @@ jobs:
uses: softprops/action-gh-release@v1
if: startsWith(github.ref, 'refs/tags/')
with:
- files: dist/*manylinux*.whl
+ files: |
+ dist/*manylinux*.whl
+ dist/*musllinux*.whl
- name: Archive Wheels
uses: actions/upload-artifact@v2
with:
name: ${{ matrix.image }}
- path: dist/*manylinux*.whl
+ path: dist/*m[au][ns][yl]linux*.whl
if-no-files-found: ignore