Skip to content

Commit

Permalink
lints
Browse files Browse the repository at this point in the history
  • Loading branch information
dirvine committed Nov 30, 2024
1 parent 315db1e commit 426973a
Showing 1 changed file with 16 additions and 3 deletions.
19 changes: 16 additions & 3 deletions .github/workflows/python-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,12 @@ jobs:
- name: Build wheels
uses: PyO3/maturin-action@v1
with:
args: --release --out dist -i python${{ matrix.python-version }}
args: >-
--release
--out dist
-i python${{ matrix.python-version }}
--metadata-only
--manifest-path Cargo.toml
sccache: 'true'
- name: Upload wheels
uses: actions/upload-artifact@v4
Expand Down Expand Up @@ -94,7 +99,12 @@ jobs:
with:
target: ${{ matrix.target }}
manylinux: auto
args: --release --out dist -i python${{ matrix.python-version }}
args: >-
--release
--out dist
-i python${{ matrix.python-version }}
--metadata-only
--manifest-path Cargo.toml
- name: Install built wheel
if: matrix.target == 'x86_64'
run: |
Expand Down Expand Up @@ -251,7 +261,10 @@ jobs:
uses: PyO3/maturin-action@v1
with:
command: sdist
args: --out dist
args: >-
--out dist
--metadata-only
--manifest-path Cargo.toml
- name: Upload sdist
uses: actions/upload-artifact@v4
with:
Expand Down

0 comments on commit 426973a

Please sign in to comment.