Skip to content

Commit

Permalink
upd pipeline
Browse files Browse the repository at this point in the history
  • Loading branch information
generall committed Oct 27, 2024
1 parent 726faa9 commit 7042d91
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -100,6 +100,7 @@ jobs:
strategy:
matrix:
target: [ x86_64 ]
manylinux: [ auto, 2_28, 2_17 ]
python-version:
- '3.8'
- '3.9'
Expand All @@ -115,7 +116,7 @@ jobs:
uses: PyO3/maturin-action@v1
with:
target: ${{ matrix.target }}
manylinux: auto
manylinux: ${{ matrix.manylinux }}
args: --release --out dist
maturin-version: "v1.7.4"
- name: Install built wheel
Expand All @@ -125,7 +126,7 @@ jobs:
- name: Upload wheels
uses: actions/upload-artifact@v4
with:
name: wheels-${{ matrix.target }}-${{ matrix.python-version }}-linux
name: wheels-${{ matrix.target }}-${{ matrix.python-version }}-manylinux-${{ matrix.manylinux }}-linux
path: dist

linux-cross:
Expand Down Expand Up @@ -301,7 +302,7 @@ jobs:
with:
name: wheels
pattern: wheels-*
delete-merged: true
delete-merged: false

release:
name: Release
Expand Down

0 comments on commit 7042d91

Please sign in to comment.