Skip to content

Commit

Permalink
Update wheel build
Browse files Browse the repository at this point in the history
  • Loading branch information
kylebarron committed Aug 1, 2024
1 parent 8221181 commit 3b9faae
Showing 1 changed file with 16 additions and 6 deletions.
22 changes: 16 additions & 6 deletions .github/workflows/wheels.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,8 @@ jobs:
target: ppc64le
module:
- arro3-core
# - arro3-compute
- arro3-compute
- arro3-io
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
Expand Down Expand Up @@ -66,7 +67,8 @@ jobs:
target: x86
module:
- arro3-core
# - arro3-compute
- arro3-compute
- arro3-io
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
Expand Down Expand Up @@ -96,7 +98,8 @@ jobs:
target: aarch64
module:
- arro3-core
# - arro3-compute
- arro3-compute
- arro3-io
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
Expand All @@ -120,7 +123,8 @@ jobs:
matrix:
module:
- arro3-core
# - arro3-compute
- arro3-compute
- arro3-io
steps:
- uses: actions/checkout@v4
- name: Build sdist
Expand All @@ -135,14 +139,20 @@ jobs:
path: dist

release:
runs-on: ubuntu-latest
strategy:
matrix:
module:
- arro3-core
- arro3-compute
- arro3-io
name: Release
environment:
name: release
url: https://pypi.org/p/arro3-core
url: https://pypi.org/p/${{ matrix.module }}
permissions:
# IMPORTANT: this permission is mandatory for trusted publishing
id-token: write
runs-on: ubuntu-latest
if: "startsWith(github.ref, 'refs/tags/')"
needs: [linux, windows, macos, sdist]
steps:
Expand Down

0 comments on commit 3b9faae

Please sign in to comment.