Skip to content

Commit

Permalink
Merge pull request #88 from elbywan/fix-macos-images
Browse files Browse the repository at this point in the history
ci: fix macos images
  • Loading branch information
elbywan authored May 14, 2024
2 parents 8b0b47a + 4040c7f commit edd0735
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 edd0735

Please sign in to comment.