Skip to content

Commit

Permalink
Merge pull request #365 from bulwark-security/use-brew-on-macos
Browse files Browse the repository at this point in the history
Install protobuf w/ brew instead
  • Loading branch information
sporkmonger authored Jun 27, 2024
2 parents 7173697 + b6064ab commit 53c5316
Showing 1 changed file with 10 additions and 2 deletions.
12 changes: 10 additions & 2 deletions .github/workflows/publish-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -52,8 +52,12 @@ jobs:
components: clippy
target: wasm32-wasi

- name: Update Homebrew
run: |
brew update --preinstall
- name: Install protobuf compiler
run: /usr/bin/sudo /usr/bin/apt install -y protobuf-compiler
run: /usr/bin/sudo /usr/local/bin/brew install protobuf

- name: Build release target
uses: clechasseur/rs-cargo@5cd564345ef5b1136392a1dc943b33a3a888b873 # v2.0.2
Expand Down Expand Up @@ -83,8 +87,12 @@ jobs:
components: clippy
target: wasm32-wasi

- name: Update Homebrew
run: |
brew update --preinstall
- name: Install protobuf compiler
run: /usr/bin/sudo /usr/bin/apt install -y protobuf-compiler
run: /usr/bin/sudo /usr/local/bin/brew install protobuf

- name: Build release target
uses: clechasseur/rs-cargo@5cd564345ef5b1136392a1dc943b33a3a888b873 # v2.0.2
Expand Down

0 comments on commit 53c5316

Please sign in to comment.