Skip to content

Commit 6ac7f23

Browse files
committed
fixup! Update CI to support building for multiple target platforms
Signed-off-by: Sahas Subramanian <[email protected]>
1 parent e0d3417 commit 6ac7f23

File tree

1 file changed

+8
-7
lines changed

1 file changed

+8
-7
lines changed

.github/workflows/ci.yaml

Lines changed: 8 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -121,12 +121,12 @@ jobs:
121121
strategy:
122122
fail-fast: false
123123
matrix:
124-
platform:
125-
- target: ubuntu-24.04
126-
- target: ubuntu-24.04-arm
127-
- target: windows-latest
128-
- target: macos-15-intel
129-
- target: macos-15
124+
target:
125+
- ubuntu-24.04
126+
- ubuntu-24.04-arm
127+
- windows-latest
128+
- macos-15-intel
129+
- macos-15
130130
python:
131131
- "3.11"
132132
- "3.12"
@@ -144,11 +144,12 @@ jobs:
144144
- name: Download package
145145
uses: actions/download-artifact@v6
146146
with:
147-
name: dist-packages-${{ matrix.platform.target }}-${{ matrix.python }}
147+
name: dist-packages-${{ matrix.target }}-${{ matrix.python }}
148148
path: dist
149149

150150
# This is necessary for the `pip` caching in the setup-python action to work
151151
- name: Fetch the pyproject.toml file for this action hash
152+
shell: bash
152153
env:
153154
GH_TOKEN: ${{ github.token }}
154155
REPO: ${{ github.repository }}

0 commit comments

Comments
 (0)