Skip to content

Commit a317a6a

Browse files
committed
🔧 [build] Update macOS build configurations
- Changed macOS version from 13 to 15-intel for improved compatibility - Adjusted build steps to reflect new macOS architecture Signed-off-by: Nick2bad4u <[email protected]>
1 parent ff8f5bb commit a317a6a

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

.github/workflows/Build.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -142,7 +142,7 @@ jobs:
142142
windows-latest,
143143
macos-15,
144144
macos-latest,
145-
macos-13,
145+
macos-15-intel,
146146
]
147147
arch: [x64, ia32, arm64]
148148
exclude:
@@ -155,9 +155,9 @@ jobs:
155155
arch: ia32
156156
- os: macos-15
157157
arch: x64
158-
- os: macos-13
158+
- os: macos-15-intel
159159
arch: ia32
160-
- os: macos-13
160+
- os: macos-15-intel
161161
arch: arm64
162162
# Exclude Ubuntu with ia32 and arm64 architectures as they are not commonly used and not officially supported except for ubuntu-24.04-arm/arm64
163163
- os: ubuntu-latest
@@ -282,7 +282,7 @@ jobs:
282282
npx electron-builder --arm64
283283
elif [[ "${{ matrix.os }}" == "macos-latest" ]]; then
284284
npx electron-builder --universal
285-
elif [[ "${{ matrix.os }}" == "macos-13" ]]; then
285+
elif [[ "${{ matrix.os }}" == "macos-15-intel" ]]; then
286286
npx electron-builder --mac --${{ matrix.arch }}
287287
elif [[ "${{ matrix.os }}" == "windows-latest" ]]; then
288288
if [[ "${{ matrix.arch }}" == "x64" ]]; then

0 commit comments

Comments
 (0)