Skip to content

Commit edd0735

Browse files
authored
Merge pull request #88 from elbywan/fix-macos-images
ci: fix macos images
2 parents 8b0b47a + 4040c7f commit edd0735

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

.github/workflows/build.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
macos:
1313
strategy:
1414
matrix:
15-
runner: [macos-latest, macos-14]
15+
runner: [macos-latest, macos-13]
1616
runs-on: ${{ matrix.runner }}
1717
steps:
1818
- name: Checkout repository
@@ -29,7 +29,7 @@ jobs:
2929
- name: Upload a Build Artifact
3030
uses: actions/upload-artifact@v2
3131
with:
32-
name: crystalline_${{ matrix.runner == 'macos-latest' && 'x86_64' || 'arm64' }}-apple-darwin
32+
name: crystalline_${{ matrix.runner == 'macos-latest' && 'arm64' || 'x86_64' }}-apple-darwin
3333
path: ./bin/crystalline
3434
linux:
3535
runs-on: ubuntu-latest

.github/workflows/release.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ jobs:
99
macos:
1010
strategy:
1111
matrix:
12-
runner: [macos-latest, macos-14]
12+
runner: [macos-latest, macos-13]
1313
runs-on: ${{ matrix.runner }}
1414
steps:
1515
- name: Checkout repository
@@ -28,7 +28,7 @@ jobs:
2828
- name: Upload a Build Artifact
2929
uses: actions/upload-artifact@v2
3030
with:
31-
name: crystalline_${{ matrix.runner == 'macos-latest' && 'x86_64' || 'arm64' }}-apple-darwin
31+
name: crystalline_${{ matrix.runner == 'macos-latest' && 'arm64' || 'x86_64' }}-apple-darwin
3232
path: ./bin/crystalline
3333
linux:
3434
runs-on: ubuntu-latest

0 commit comments

Comments
 (0)