diff --git a/.github/workflows/windows-python.yml b/.github/workflows/windows-python.yml index 0d8ace6..af1e101 100644 --- a/.github/workflows/windows-python.yml +++ b/.github/workflows/windows-python.yml @@ -19,6 +19,7 @@ permissions: jobs: windows: + name: Build runs-on: windows-latest strategy: matrix: @@ -40,18 +41,21 @@ jobs: - name: Upload wheels uses: actions/upload-artifact@v4 with: - name: wheels + name: wheels-${{ matrix.target }} path: dist release: name: Release runs-on: ubuntu-latest + strategy: + matrix: + target: [x64, x86] if: "startsWith(github.ref, 'refs/tags/')" needs: windows steps: - uses: actions/download-artifact@v4 with: - name: wheels + name: wheels-${{ matrix.target }} - name: Publish to PyPI uses: PyO3/maturin-action@v1 env: