diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index fbbca60..a3b0058 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -82,24 +82,21 @@ jobs: windows: runs-on: windows-latest - strategy: - matrix: - target: [x64, x86] steps: - uses: actions/checkout@v4 - uses: actions/setup-python@v5 with: python-version: 3.9 - architecture: ${{ matrix.target }} + architecture: x64 - name: Build wheels uses: PyO3/maturin-action@v1 with: - target: ${{ matrix.target }} + target: x64 args: --release --out dist -m si-units/Cargo.toml - name: Upload wheels uses: actions/upload-artifact@v4 with: - name: wheel-${{ matrix.target }} + name: wheel-windows-x64 path: dist deploy-pypi: diff --git a/.github/workflows/wheels.yml b/.github/workflows/wheels.yml index 8766d43..cb7d0e8 100644 --- a/.github/workflows/wheels.yml +++ b/.github/workflows/wheels.yml @@ -61,22 +61,19 @@ jobs: path: dist windows: runs-on: windows-latest - strategy: - matrix: - target: [x64, x86] steps: - uses: actions/checkout@v4 - uses: actions/setup-python@v5 with: python-version: 3.9 - architecture: ${{ matrix.target }} + architecture: x64 - name: Build wheels uses: PyO3/maturin-action@v1 with: - target: ${{ matrix.target }} + target: x64 args: --release --out dist -m si-units/Cargo.toml - name: Upload wheels uses: actions/upload-artifact@v4 with: - name: wheel-${{ matrix.target }} + name: wheel-windows-x64 path: dist