Skip to content

Commit 5ba7524

Browse files
committed
ci: Add separate macOS builds for ARM and Intel architectures
This commit updates the `build-desktop.yml` GitHub Actions workflow to generate two distinct macOS application packages: one for ARM (Apple Silicon) and one for Intel processors. This is achieved by adding a new entry to the build matrix and introducing an `arch` variable to differentiate the builds.
1 parent cf512cc commit 5ba7524

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

.github/workflows/build-desktop.yml

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,13 @@ jobs:
1313
matrix:
1414
include:
1515
- os: macos-latest
16-
format: macos
16+
format: macos-arm
1717
gradle_task: packageReleaseDistributionForCurrentOS
18+
arch: arm
19+
- os: macos-latest
20+
format: macos-intel
21+
gradle_task: packageReleaseDistributionForCurrentOS
22+
arch: intel
1823
- os: windows-latest
1924
format: windows
2025
gradle_task: packageReleaseDistributionForCurrentOS

0 commit comments

Comments
 (0)