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 370d908
Showing 1 changed file with 16 additions and 1 deletion.
17 changes: 16 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,18 @@ 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
runs: echo 'Hello, world!'

0 comments on commit 370d908

Please sign in to comment.