We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 379f9d8 commit 8b73c5cCopy full SHA for 8b73c5c
.github/workflows/release.yml
@@ -88,7 +88,7 @@ jobs:
88
- x86_64-pc-windows-gnu
89
- i686-pc-windows-msvc
90
- aarch64-pc-windows-msvc
91
- feature:
+ feature: &features
92
- small
93
- lean
94
- max
@@ -229,3 +229,21 @@ jobs:
229
run: gh release upload "$VERSION" "$ASSET"
230
env:
231
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