Skip to content

Commit

Permalink
changing working dir
Browse files Browse the repository at this point in the history
  • Loading branch information
maebli committed Sep 17, 2024
1 parent 2398676 commit 14c9810
Showing 1 changed file with 13 additions and 2 deletions.
15 changes: 13 additions & 2 deletions .github/workflows/python.yml
Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,7 @@ jobs:
with:
name: wheels-linux-${{ matrix.platform.target }}
path: dist
working-directory: ./python

musllinux:
runs-on: ${{ matrix.platform.runner }}
Expand All @@ -76,11 +77,13 @@ jobs:
args: --release --out dist --find-interpreter
sccache: 'true'
manylinux: musllinux_1_2
working-directory: ./python
- name: Upload wheels
uses: actions/upload-artifact@v4
with:
name: wheels-musllinux-${{ matrix.platform.target }}
path: dist
working-directory: ./python

windows:
runs-on: ${{ matrix.platform.runner }}
Expand All @@ -103,11 +106,13 @@ jobs:
target: ${{ matrix.platform.target }}
args: --release --out dist --find-interpreter
sccache: 'true'
working-directory: ./python
- name: Upload wheels
uses: actions/upload-artifact@v4
with:
name: wheels-windows-${{ matrix.platform.target }}
path: dist
working-directory: ./python

macos:
runs-on: ${{ matrix.platform.runner }}
Expand All @@ -129,11 +134,13 @@ jobs:
target: ${{ matrix.platform.target }}
args: --release --out dist --find-interpreter
sccache: 'true'
working-directory: ./python
- name: Upload wheels
uses: actions/upload-artifact@v4
with:
name: wheels-macos-${{ matrix.platform.target }}
path: dist
working-directory: ./python

sdist:
runs-on: ubuntu-latest
Expand All @@ -144,11 +151,14 @@ jobs:
with:
command: sdist
args: --out dist
working-directory: ./python
- name: Upload sdist
uses: actions/upload-artifact@v4
with:
name: wheels-sdist
name: whee
ls-sdist
path: dist
working-directory: ./python

release:
name: Release
Expand All @@ -163,4 +173,5 @@ jobs:
MATURIN_PYPI_TOKEN: ${{ secrets.PYPI_API_TOKEN }}
with:
command: upload
args: --non-interactive --skip-existing wheels-*/*
args: --non-interactive --skip-existing wheels-*/*
working-directory: ./python

0 comments on commit 14c9810

Please sign in to comment.