Skip to content

Commit

Permalink
fix mac architecture (#497)
Browse files Browse the repository at this point in the history
  • Loading branch information
MarkSackerberg authored Dec 6, 2024
1 parent ab4bd70 commit 9af4103
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
- windows-latest
- ubuntu-latest
- macos-latest
- macos-14
- macos-13

runs-on: ${{ matrix.os }}

Expand Down Expand Up @@ -54,10 +54,10 @@ jobs:
binary_extension=".exe"
binary_path="sugar-windows-latest${binary_extension}"
elif [[ "${RUNNER_OS}" == "macOS" ]]; then
if [[ "${MATRIX_OS}" == "macos-14" ]]; then
binary_path="sugar-macos-m1-latest"
else
if [[ "${MATRIX_OS}" == "macos-13" ]]; then
binary_path="sugar-macos-intel-latest"
else
binary_path="sugar-macos-m1-latest"
fi
elif [[ "${RUNNER_OS}" == "Linux" ]]; then
binary_path="sugar-ubuntu-latest"
Expand Down

0 comments on commit 9af4103

Please sign in to comment.