Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 6 additions & 6 deletions .github/workflows/ci-python.yml
Original file line number Diff line number Diff line change
Expand Up @@ -50,11 +50,12 @@ jobs:
args: --release --out dist --find-interpreter
sccache: ${{ !startsWith(github.ref, 'refs/tags/') }}
manylinux: auto
docker-options: -e NO_CHECKERS
- name: Upload wheels
uses: actions/upload-artifact@v4
with:
name: wheels-linux-${{ matrix.platform.target }}
path: dist
path: pumpkin-solver-py/dist

musllinux:
runs-on: ${{ matrix.platform.runner }}
Expand Down Expand Up @@ -86,7 +87,7 @@ jobs:
uses: actions/upload-artifact@v4
with:
name: wheels-musllinux-${{ matrix.platform.target }}
path: dist
path: pumpkin-solver-py/dist

windows:
runs-on: ${{ matrix.platform.runner }}
Expand Down Expand Up @@ -114,7 +115,7 @@ jobs:
uses: actions/upload-artifact@v4
with:
name: wheels-windows-${{ matrix.platform.target }}
path: dist
path: pumpkin-solver-py/dist

macos:
runs-on: ${{ matrix.platform.runner }}
Expand All @@ -141,7 +142,7 @@ jobs:
uses: actions/upload-artifact@v4
with:
name: wheels-macos-${{ matrix.platform.target }}
path: dist
path: pumpkin-solver-py/dist

sdist:
runs-on: ubuntu-latest
Expand All @@ -157,7 +158,7 @@ jobs:
uses: actions/upload-artifact@v4
with:
name: wheels-sdist
path: dist
path: pumpkin-solver-py/dist

release:
name: Release
Expand All @@ -179,7 +180,6 @@ jobs:
with:
subject-path: 'wheels-*/*'
- name: Publish to PyPI
if: ${{ startsWith(github.ref, 'refs/tags/') }}
uses: PyO3/maturin-action@v1
with:
command: upload
Expand Down
Loading