Skip to content

Commit

Permalink
build: fix can't find interpreter issue on linux
Browse files Browse the repository at this point in the history
  • Loading branch information
joseph-sentry authored Apr 19, 2024
1 parent e194954 commit b4cea06
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ jobs:
uses: PyO3/maturin-action@v1
with:
target: ${{ matrix.target }}
args: --release --out dist -i 3.10
args: --release --out dist --find-interpreter
sccache: 'true'
manylinux: auto
- name: Upload wheels
Expand All @@ -54,7 +54,7 @@ jobs:
uses: PyO3/maturin-action@v1
with:
target: ${{ matrix.target }}
args: --release --out dist
args: --release --out dist --find-interpreter
sccache: 'true'
- name: Upload wheels
uses: actions/upload-artifact@v3
Expand All @@ -76,7 +76,7 @@ jobs:
uses: PyO3/maturin-action@v1
with:
target: ${{ matrix.target }}
args: --release --out dist
args: --release --out dist --find-interpreter
sccache: 'true'
- name: Upload wheels
uses: actions/upload-artifact@v3
Expand All @@ -92,7 +92,7 @@ jobs:
uses: PyO3/maturin-action@v1
with:
command: sdist
args: --out dist
args: --out dist --find-interpreter
- name: Upload sdist
uses: actions/upload-artifact@v3
with:
Expand Down

0 comments on commit b4cea06

Please sign in to comment.