Skip to content

Commit 0592774

Browse files
Merge pull request #22 from QuartzLibrary/publish
Fix publishing workflows
2 parents 7870004 + 6af62f1 commit 0592774

1 file changed

Lines changed: 4 additions & 2 deletions

File tree

.github/workflows/publish-python.yml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,8 @@ jobs:
2525
with:
2626
command: build
2727
target: ${{ matrix.target }}
28-
args: --release --manifest-path packages/python/pyproject.toml --out dist
28+
args: --release --out dist
29+
working-directory: packages/python
2930
- uses: actions/upload-artifact@v4
3031
with:
3132
name: wheel-${{ matrix.target }}
@@ -38,7 +39,8 @@ jobs:
3839
- uses: PyO3/maturin-action@v1
3940
with:
4041
command: sdist
41-
args: --manifest-path packages/python/pyproject.toml --out dist
42+
args: --out dist
43+
working-directory: packages/python
4244
- uses: actions/upload-artifact@v4
4345
with:
4446
name: sdist

0 commit comments

Comments
 (0)