Skip to content

Commit

Permalink
ci: fix macos images
Browse files Browse the repository at this point in the history
  • Loading branch information
elbywan committed May 14, 2024
1 parent 8b0b47a commit 4040c7f
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
macos:
strategy:
matrix:
runner: [macos-latest, macos-14]
runner: [macos-latest, macos-13]
runs-on: ${{ matrix.runner }}
steps:
- name: Checkout repository
Expand All @@ -29,7 +29,7 @@ jobs:
- name: Upload a Build Artifact
uses: actions/upload-artifact@v2
with:
name: crystalline_${{ matrix.runner == 'macos-latest' && 'x86_64' || 'arm64' }}-apple-darwin
name: crystalline_${{ matrix.runner == 'macos-latest' && 'arm64' || 'x86_64' }}-apple-darwin
path: ./bin/crystalline
linux:
runs-on: ubuntu-latest
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ jobs:
macos:
strategy:
matrix:
runner: [macos-latest, macos-14]
runner: [macos-latest, macos-13]
runs-on: ${{ matrix.runner }}
steps:
- name: Checkout repository
Expand All @@ -28,7 +28,7 @@ jobs:
- name: Upload a Build Artifact
uses: actions/upload-artifact@v2
with:
name: crystalline_${{ matrix.runner == 'macos-latest' && 'x86_64' || 'arm64' }}-apple-darwin
name: crystalline_${{ matrix.runner == 'macos-latest' && 'arm64' || 'x86_64' }}-apple-darwin
path: ./bin/crystalline
linux:
runs-on: ubuntu-latest
Expand Down

0 comments on commit 4040c7f

Please sign in to comment.