Skip to content
This repository has been archived by the owner on Oct 18, 2023. It is now read-only.

Commit

Permalink
fix brew command for both types of mac runners (#491)
Browse files Browse the repository at this point in the history
  • Loading branch information
dyasny authored Jul 1, 2023
1 parent 1520e64 commit e888ca0
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -171,9 +171,9 @@ jobs:
- name: install dependencies (macos)
if: startsWith(matrix.os, 'macos')
run: |
/opt/homebrew/bin/brew install llvm
/opt/homebrew/bin/brew install pkg-config
/opt/homebrew/bin/brew install protobuf
brew install llvm || /opt/homebrew/bin/brew install llvm
brew install pkg-config || /opt/homebrew/bin/brew install pkg-config
brew install protobuf || /opt/homebrew/bin/brew install protobuf
- name: Build sqld (linux/macos)
if: matrix.os != 'windows-latest'
Expand Down
2 changes: 1 addition & 1 deletion sqld/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "sqld"
version = "0.16.2"
version = "0.16.3"
edition = "2021"
default-run = "sqld"

Expand Down

0 comments on commit e888ca0

Please sign in to comment.