Skip to content

Commit 513bebc

Browse files
Update MacOS builds
1 parent 3154fe2 commit 513bebc

1 file changed

Lines changed: 7 additions & 3 deletions

File tree

.github/workflows/release.yml

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ jobs:
3838
timeout-minutes: 30
3939
strategy:
4040
matrix:
41-
os: [macos-15-intel, ubuntu-24.04, ubuntu-24.04-arm, windows-latest]
41+
os: [macos-latest, ubuntu-24.04, ubuntu-24.04-arm, windows-latest]
4242
steps:
4343
- uses: actions/checkout@v6
4444
- uses: pnpm/action-setup@v4
@@ -59,10 +59,14 @@ jobs:
5959
CERTIFICATE_OSX_APPLICATION: ${{ secrets.CERTIFICATE_OSX_APPLICATION }}
6060
CERTIFICATE_PASSWORD: ${{ secrets.CERTIFICATE_PASSWORD }}
6161

62-
6362
- name: Make
6463
if: startsWith(github.ref, 'refs/tags/')
65-
run: pnpm make
64+
run: |
65+
if [ "${{ runner.os }}" == "macOS" ]; then
66+
pnpm make -- --arch=universal
67+
else
68+
pnpm make
69+
fi
6670
env:
6771
APPLE_ID: ${{ secrets.APPLE_ID }}
6872
APPLE_ID_PASSWORD: ${{ secrets.APPLE_ID_PASSWORD }}

0 commit comments

Comments
 (0)