Skip to content

Commit 8b73c5c

Browse files
committed
Start on skeleton of universal binary build job
1 parent 379f9d8 commit 8b73c5c

File tree

1 file changed

+19
-1
lines changed

1 file changed

+19
-1
lines changed

.github/workflows/release.yml

Lines changed: 19 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,7 @@ jobs:
8888
- x86_64-pc-windows-gnu
8989
- i686-pc-windows-msvc
9090
- aarch64-pc-windows-msvc
91-
feature:
91+
feature: &features
9292
- small
9393
- lean
9494
- max
@@ -229,3 +229,21 @@ jobs:
229229
run: gh release upload "$VERSION" "$ASSET"
230230
env:
231231
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
232+
233+
build-macos-universal-binary-release:
234+
name: build-macos-universal-binary-release
235+
236+
runs-on: macos-latest
237+
238+
needs: [ create-release, build-release ]
239+
240+
strategy:
241+
matrix:
242+
feature: *features
243+
244+
steps:
245+
- name: Placeholder
246+
run: |
247+
echo "This job is for the feature: $FEATURE"
248+
env:
249+
FEATURE: ${{ matrix.feature }}

0 commit comments

Comments
 (0)