Skip to content

Commit f193db2

Browse files
committed
Update release workflow too
1 parent 624c886 commit f193db2

File tree

2 files changed

+7
-4
lines changed

2 files changed

+7
-4
lines changed

.github/workflows/release.yml

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,9 +35,12 @@ jobs:
3535
with:
3636
submodules: true
3737
fetch-depth: 0
38-
- name: Set up macOS
38+
- name: Set up macOS-12
3939
run: brew unlink gfortran && brew link --overwrite gfortran
40-
if: ${{ runner.os == 'macOS' }}
40+
if: ${{ matrix.os == 'macos-12' }}
41+
- name: Set up macOS-14
42+
run: brew install gfortran
43+
if: ${{ matrix.os == 'macos-14' }}
4144
- uses: pypa/cibuildwheel@v2.17.0
4245
- uses: actions/upload-artifact@v4
4346
with:

.github/workflows/tests.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -45,10 +45,10 @@ jobs:
4545
sudo apt-get update
4646
sudo apt-get install -y gcc g++ gfortran
4747
if: ${{ runner.os == 'Linux' }}
48-
- name: Set up macOS
48+
- name: Set up macOS-12
4949
run: brew unlink gfortran && brew link --overwrite gfortran
5050
if: ${{ matrix.os == 'macos-12' }}
51-
- name: Set up macOS
51+
- name: Set up macOS-14
5252
run: brew install gfortran
5353
if: ${{ matrix.os == 'macos-14' }}
5454
- name: Cache pip packages

0 commit comments

Comments
 (0)