Skip to content

Commit

Permalink
Fix invalid flag
Browse files Browse the repository at this point in the history
  • Loading branch information
Jonxslays committed Feb 25, 2024
1 parent 2df0565 commit 50eedbb
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ jobs:
uses: PyO3/maturin-action@v1
with:
target: x86_64
args: --release -i 3.8 3.9 3.10 3.11 3.12 --o dist --sdist
args: --release -i 3.8 3.9 3.10 3.11 3.12 -o dist --sdist

- name: Install built wheel - x86_64
run: |
Expand All @@ -61,7 +61,7 @@ jobs:
uses: PyO3/maturin-action@v1
with:
target: universal2-apple-darwin
args: --release -i 3.8 3.9 3.10 3.11 3.12 --o dist
args: --release -i 3.8 3.9 3.10 3.11 3.12 -o dist

- name: Install built wheel - universal2
run: |
Expand Down Expand Up @@ -97,7 +97,7 @@ jobs:
uses: PyO3/maturin-action@v1
with:
target: ${{ matrix.target }}
args: --release -i 3.8 3.9 3.10 3.11 3.12 --o dist
args: --release -i 3.8 3.9 3.10 3.11 3.12 -o dist

- name: Install built wheel - ${{ matrix.target }}
run: |
Expand Down Expand Up @@ -133,7 +133,7 @@ jobs:
with:
target: ${{ matrix.target }}
manylinux: auto
args: --release -i 3.8 3.9 3.10 3.11 3.12 --o dist
args: --release -i 3.8 3.9 3.10 3.11 3.12 -o dist

- name: Install built wheel - ${{ matrix.target }}
if: matrix.target == 'x86_64'
Expand Down Expand Up @@ -169,7 +169,7 @@ jobs:
with:
target: ${{ matrix.target }}
manylinux: auto
args: --release -i 3.8 3.9 3.10 3.11 3.12 --o dist
args: --release -i 3.8 3.9 3.10 3.11 3.12 -o dist

- name: Install built wheel - ${{ matrix.target }}
uses: uraimo/[email protected]
Expand Down Expand Up @@ -215,7 +215,7 @@ jobs:
with:
target: ${{ matrix.target }}
manylinux: musllinux_1_2
args: --release -i 3.8 3.9 3.10 3.11 3.12 --o dist
args: --release -i 3.8 3.9 3.10 3.11 3.12 -o dist

- name: Install built wheel - ${{ matrix.target }}
if: matrix.target == 'x86_64-unknown-linux-musl'
Expand Down Expand Up @@ -261,7 +261,7 @@ jobs:
with:
target: ${{ matrix.platform.target }}
manylinux: musllinux_1_2
args: --release -i 3.8 3.9 3.10 3.11 3.12 --o dist
args: --release -i 3.8 3.9 3.10 3.11 3.12 -o dist

- name: Install built wheel - ${{ matrix.platform.arch }}
uses: uraimo/[email protected]
Expand Down

0 comments on commit 50eedbb

Please sign in to comment.