Skip to content

Commit

Permalink
Merge pull request #950 from vorth/mac-os-intel
Browse files Browse the repository at this point in the history
Making sure Intel build is on an Intel image
  • Loading branch information
vorth authored Jan 6, 2025
2 parents e6ef373 + 774db59 commit 10dc61d
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion .github/workflows/desktop.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,8 @@ jobs:
matrix:
arch: [intel, arm64]

runs-on: 'macos-latest'
# macos-13 is an Intel image, apparently, whereas macos-latest is the latest Arm64
runs-on: ${{ matrix.arch == 'intel' && 'macos-13' || 'macos-latest' }}

# Steps represent a sequence of tasks that will be executed as part of the job
steps:
Expand Down

0 comments on commit 10dc61d

Please sign in to comment.