Skip to content

Commit 95f4c71

Browse files
authored
fix: Run maturin publish (#498)
1 parent 426e16c commit 95f4c71

File tree

2 files changed

+3
-8
lines changed

2 files changed

+3
-8
lines changed

.github/workflows/release.yml

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -32,9 +32,4 @@ jobs:
3232
if: ${{ steps.release.outputs.release_created }}
3333
uses: PyO3/maturin-action@v1
3434
with:
35-
command: build
36-
args: --release --out dist
37-
38-
- name: Publish package distributions to PyPI
39-
if: ${{ steps.release.outputs.release_created }}
40-
uses: pypa/gh-action-pypi-publish@release/v1
35+
command: publish

.github/workflows/test.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ jobs:
3333
uses: PyO3/maturin-action@v1
3434
with:
3535
command: build
36-
args: --release
36+
args: --release --sdist
3737

3838
install:
3939
runs-on: ${{ matrix.runs-on }}
@@ -58,7 +58,7 @@ jobs:
5858
uses: PyO3/maturin-action@v1
5959
with:
6060
command: build
61-
args: --release --out dist
61+
args: --release --out dist --sdist
6262

6363
- name: Setup Python
6464
uses: actions/setup-python@v5

0 commit comments

Comments
 (0)