Skip to content

Commit 9af4103

Browse files
fix mac architecture (#497)
1 parent ab4bd70 commit 9af4103

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
@@ -17,7 +17,7 @@ jobs:
1717
- windows-latest
1818
- ubuntu-latest
1919
- macos-latest
20-
- macos-14
20+
- macos-13
2121

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

@@ -54,10 +54,10 @@ jobs:
5454
binary_extension=".exe"
5555
binary_path="sugar-windows-latest${binary_extension}"
5656
elif [[ "${RUNNER_OS}" == "macOS" ]]; then
57-
if [[ "${MATRIX_OS}" == "macos-14" ]]; then
58-
binary_path="sugar-macos-m1-latest"
59-
else
57+
if [[ "${MATRIX_OS}" == "macos-13" ]]; then
6058
binary_path="sugar-macos-intel-latest"
59+
else
60+
binary_path="sugar-macos-m1-latest"
6161
fi
6262
elif [[ "${RUNNER_OS}" == "Linux" ]]; then
6363
binary_path="sugar-ubuntu-latest"

0 commit comments

Comments
 (0)