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 3154fe2 commit 513bebcCopy full SHA for 513bebc
1 file changed
.github/workflows/release.yml
@@ -38,7 +38,7 @@ jobs:
38
timeout-minutes: 30
39
strategy:
40
matrix:
41
- os: [macos-15-intel, ubuntu-24.04, ubuntu-24.04-arm, windows-latest]
+ os: [macos-latest, ubuntu-24.04, ubuntu-24.04-arm, windows-latest]
42
steps:
43
- uses: actions/checkout@v6
44
- uses: pnpm/action-setup@v4
@@ -59,10 +59,14 @@ jobs:
59
CERTIFICATE_OSX_APPLICATION: ${{ secrets.CERTIFICATE_OSX_APPLICATION }}
60
CERTIFICATE_PASSWORD: ${{ secrets.CERTIFICATE_PASSWORD }}
61
62
-
63
- name: Make
64
if: startsWith(github.ref, 'refs/tags/')
65
- run: pnpm make
+ run: |
+ if [ "${{ runner.os }}" == "macOS" ]; then
66
+ pnpm make -- --arch=universal
67
+ else
68
+ pnpm make
69
+ fi
70
env:
71
APPLE_ID: ${{ secrets.APPLE_ID }}
72
APPLE_ID_PASSWORD: ${{ secrets.APPLE_ID_PASSWORD }}
0 commit comments