Skip to content

Commit

Permalink
use release profile in release workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
prehner committed Jul 13, 2024
1 parent 67d2d77 commit 370a4c7
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ jobs:
with:
manylinux: auto
command: build
args: --profile release-lto --out dist
args: --release --out dist
- name: Upload wheels
uses: actions/upload-artifact@v4
with:
Expand All @@ -54,7 +54,7 @@ jobs:
uses: PyO3/maturin-action@v1
with:
target: x86_64
args: --profile release-lto --out dist
args: --release --out dist
- name: Upload wheels
uses: actions/upload-artifact@v4
with:
Expand All @@ -72,7 +72,7 @@ jobs:
uses: PyO3/maturin-action@v1
with:
target: aarch64
args: --profile release-lto-thin --out dist
args: --release-thin --out dist
- name: Upload wheels
uses: actions/upload-artifact@v4
with:
Expand All @@ -93,7 +93,7 @@ jobs:
uses: PyO3/maturin-action@v1
with:
target: ${{ matrix.target }}
args: --profile release-lto --out dist
args: --release --out dist
- name: Upload wheels
uses: actions/upload-artifact@v4
with:
Expand Down

0 comments on commit 370a4c7

Please sign in to comment.