From c8eaab893dcbdf9946a846297fe2a6b2d38b868f Mon Sep 17 00:00:00 2001 From: Ivan Levkivskyi Date: Thu, 2 Oct 2025 18:27:50 +0100 Subject: [PATCH] Skip WASM wheels during PyPI upload --- .github/workflows/buildwheels.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.github/workflows/buildwheels.yml b/.github/workflows/buildwheels.yml index 85f5ecf..0de1c56 100644 --- a/.github/workflows/buildwheels.yml +++ b/.github/workflows/buildwheels.yml @@ -140,5 +140,9 @@ jobs: pattern: dist-* path: dist merge-multiple: true + - name: Skip WASM wheels (not supported by PyPI yet) + run: rm dist/*_wasm32.whl - name: Release to PyPI uses: pypa/gh-action-pypi-publish@release/v1 + with: + skip-existing: true