Skip to content

Commit dfa2a8c

Browse files
committed
feat: add Homebrew installation step for macOS in build.yml
1 parent 1494f61 commit dfa2a8c

1 file changed

Lines changed: 5 additions & 0 deletions

File tree

.github/workflows/build.yml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,11 @@ jobs:
3030
steps:
3131
- uses: actions/checkout@v4
3232

33+
- name: Install Homebrew (macOS)
34+
if: runner.os == 'macOS'
35+
run: |
36+
/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)"
37+
3338
- name: Setup .NET
3439
uses: actions/setup-dotnet@v4
3540
with:

0 commit comments

Comments
 (0)