Skip to content
Merged
Show file tree
Hide file tree
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
7 changes: 1 addition & 6 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,9 +32,4 @@ jobs:
if: ${{ steps.release.outputs.release_created }}
uses: PyO3/maturin-action@v1
with:
command: build
args: --release --out dist

- name: Publish package distributions to PyPI
if: ${{ steps.release.outputs.release_created }}
uses: pypa/gh-action-pypi-publish@release/v1
command: publish
4 changes: 2 additions & 2 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ jobs:
uses: PyO3/maturin-action@v1
with:
command: build
args: --release
args: --release --sdist

install:
runs-on: ${{ matrix.runs-on }}
Expand All @@ -58,7 +58,7 @@ jobs:
uses: PyO3/maturin-action@v1
with:
command: build
args: --release --out dist
args: --release --out dist --sdist

- name: Setup Python
uses: actions/setup-python@v5
Expand Down