Skip to content

Commit

Permalink
Update modules in wheel build (#102)
Browse files Browse the repository at this point in the history
* Update wheel build

* change tag match
  • Loading branch information
kylebarron authored Aug 7, 2024
1 parent 8221181 commit c4458a9
Showing 1 changed file with 17 additions and 7 deletions.
24 changes: 17 additions & 7 deletions .github/workflows/wheels.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ on:
branches:
- main
tags:
- "py-core-v*"
- "py-v*"
workflow_dispatch:

permissions:
Expand All @@ -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 c4458a9

Please sign in to comment.