Skip to content

Commit 8c0ac33

Browse files
committed
fix condition for make install
1 parent 8b7bb47 commit 8c0ac33

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/ci.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -179,9 +179,9 @@ jobs:
179179
run: brew install danger/tap/danger-js
180180

181181
- run: make install
182-
if: ${{ runner.os == 'macos-13' }}
182+
if: ${{ matrix.runner == 'macos-13' }}
183183
- run: make install PREFIX='/opt/homebrew'
184-
if: ${{ runner.os != 'macos-13' }}
184+
if: ${{ matrix.runner != 'macos-13' }}
185185

186186
- run: rm -rf .build && rm -rf Package.swift
187187

0 commit comments

Comments
 (0)