Skip to content

Commit

Permalink
Start on skeleton of universal binary build job
Browse files Browse the repository at this point in the history
  • Loading branch information
EliahKagan committed Aug 1, 2024
1 parent fa42f8b commit 0d0ae4b
Showing 1 changed file with 19 additions and 1 deletion.
20 changes: 19 additions & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ jobs:
- x86_64-pc-windows-gnu
- i686-pc-windows-msvc
- aarch64-pc-windows-msvc
feature:
feature: &features
- small
- lean
- max
Expand Down Expand Up @@ -229,3 +229,21 @@ jobs:
run: gh release upload "$VERSION" "$ASSET"
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

build-macos-universal-binary-release:
name: build-macos-universal-binary-release

runs-on: macos-latest

needs: [ create-release, build-release ]

strategy:
matrix:
feature: *features

steps:
- name: Placeholder
run: |
echo "This job is for the feature: $FEATURE"
env:
FEATURE: ${{ matrix.feature }}

0 comments on commit 0d0ae4b

Please sign in to comment.