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

Commit e888ca0

Browse files
authored
fix brew command for both types of mac runners (#491)
1 parent 1520e64 commit e888ca0

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

.github/workflows/publish.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -171,9 +171,9 @@ jobs:
171171
- name: install dependencies (macos)
172172
if: startsWith(matrix.os, 'macos')
173173
run: |
174-
/opt/homebrew/bin/brew install llvm
175-
/opt/homebrew/bin/brew install pkg-config
176-
/opt/homebrew/bin/brew install protobuf
174+
brew install llvm || /opt/homebrew/bin/brew install llvm
175+
brew install pkg-config || /opt/homebrew/bin/brew install pkg-config
176+
brew install protobuf || /opt/homebrew/bin/brew install protobuf
177177
178178
- name: Build sqld (linux/macos)
179179
if: matrix.os != 'windows-latest'

sqld/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "sqld"
3-
version = "0.16.2"
3+
version = "0.16.3"
44
edition = "2021"
55
default-run = "sqld"
66

0 commit comments

Comments
 (0)