Skip to content

Commit

Permalink
undo tweaks
Browse files Browse the repository at this point in the history
  • Loading branch information
mscroggs committed Sep 18, 2024
1 parent 2e97a11 commit 719ce89
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 @@ -18,8 +18,9 @@ jobs:
strategy:
matrix:
platform:
- target: x86_64
- target: x86_64-unknown-linux-gnu
container: quay.io/pypa/manylinux_2_28_x86_64
wheel: wheels-linux-x86_64
package-manager: yum
python: /opt/python/cp38-cp38/bin/python
container: ${{ matrix.platform.container }}
Expand All @@ -46,12 +47,12 @@ jobs:
${{ matrix.platform.python }} -m pip install cffi
- name: Build wheel
run: ${{ matrix.platform.python }} -m maturin build --release --out dist -i ${{ matrix.platform.python }} --target ${{ matrix.platform.target }}-unknown-linux-gnu
run: ${{ matrix.platform.python }} -m maturin build --release --out dist -i ${{ matrix.platform.python }} --target ${{ matrix.platform.target }}

- name: Upload wheels
uses: actions/upload-artifact@v4
with:
name: wheels-linux-${{ matrix.platform.target }}
name: ${{ matrix.platform.wheel }}
path: dist

macos:
Expand Down

0 comments on commit 719ce89

Please sign in to comment.