Skip to content

Commit

Permalink
fix condition for make install
Browse files Browse the repository at this point in the history
  • Loading branch information
417-72KI committed Nov 11, 2024
1 parent 8b7bb47 commit 8c0ac33
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -179,9 +179,9 @@ jobs:
run: brew install danger/tap/danger-js

- run: make install
if: ${{ runner.os == 'macos-13' }}
if: ${{ matrix.runner == 'macos-13' }}
- run: make install PREFIX='/opt/homebrew'
if: ${{ runner.os != 'macos-13' }}
if: ${{ matrix.runner != 'macos-13' }}

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

Expand Down

0 comments on commit 8c0ac33

Please sign in to comment.