Skip to content

Commit

Permalink
macos
Browse files Browse the repository at this point in the history
  • Loading branch information
danemadsen committed Aug 7, 2024
1 parent c5a1835 commit 83eb7b0
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/build-macos.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,10 +14,10 @@ on:

jobs:
build:
runs-on: macos-latest
runs-on: ${{ matrix.os }}
strategy:
matrix:
arch: [x86_64, arm64]
os: [macos-13, macos-14]

steps:
- name: Checkout code
Expand Down Expand Up @@ -69,12 +69,12 @@ jobs:
xcrun stapler staple "build/macos/Build/Products/Release/maid.app"
- name: Create DMG
run: ./scripts/create_dmg.sh ${{ matrix.arch }}
run: ./scripts/create_dmg.sh ${{ matrix.os == 'macos-13' && 'x86_64' || 'arm64' }}

- name: Upload macOS Build
uses: actions/upload-artifact@v4
with:
name: maid-macos-${{ matrix.arch }}
name: maid-macos-${{ matrix.os == 'macos-13' && 'x86_64' || 'arm64' }}
path: dmg

timeout-minutes: 20
2 changes: 1 addition & 1 deletion packages/babylon_tts
Submodule babylon_tts updated 1 files
+1 −1 src/babylon_cpp

0 comments on commit 83eb7b0

Please sign in to comment.