Skip to content

Commit

Permalink
Fix manylinux builds
Browse files Browse the repository at this point in the history
  • Loading branch information
lasa01 committed Jul 7, 2024
1 parent 16b90eb commit 34c4365
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -44,10 +44,10 @@ jobs:

build-manylinux:
runs-on: ubuntu-latest
container: quay.io/pypa/manylinux2014_x86_64
container: quay.io/pypa/manylinux_2_28_x86_64

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Select Python version
run: echo "/opt/python/cp310-cp310/bin" >> $GITHUB_PATH
- uses: actions-rs/toolchain@v1
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -61,12 +61,12 @@ jobs:

build-manylinux:
runs-on: ubuntu-latest
container: quay.io/pypa/manylinux2014_x86_64
container: quay.io/pypa/manylinux_2_28_x86_64

needs: check-version

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Select Python version
run: echo "/opt/python/cp310-cp310/bin" >> $GITHUB_PATH
- uses: actions-rs/toolchain@v1
Expand All @@ -83,7 +83,7 @@ jobs:
shell: bash
run: for filename in dist/*.zip; do mv "${filename}" "${filename%.zip}-${{ runner.os }}-${{ runner.arch }}.zip"; done;
- name: Release
uses: softprops/action-gh-release@v1
uses: softprops/action-gh-release@v2
with:
draft: true
fail_on_unmatched_files: true
Expand Down

0 comments on commit 34c4365

Please sign in to comment.