From 488e21a34259258210f0be92c58618e1ea8a928f Mon Sep 17 00:00:00 2001 From: Stefan Behnel Date: Mon, 6 Dec 2021 11:55:56 +0100 Subject: [PATCH] Also upload the musllinux wheels to GH Releases. --- .github/workflows/wheel-manylinux.yml | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/.github/workflows/wheel-manylinux.yml b/.github/workflows/wheel-manylinux.yml index e9645d7911e..8e3cdffa47f 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