Skip to content

Commit 3064a71

Browse files
committed
install openssl for publish-binaries build, macos only
1 parent 6164458 commit 3064a71

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

.github/workflows/publish-binaries.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -48,6 +48,10 @@ jobs:
4848
- uses: actions/checkout@v4
4949
- name: Install Rust
5050
run: rustup update stable --no-self-update && rustup default stable && rustup target add ${{ matrix.rust-target }}
51+
- name: Install Openssl (Mac)
52+
if: runner.os == 'macOS'
53+
run: brew install openssl
54+
5155
- run: cargo build --release --target ${{ matrix.rust-target }}
5256
if: ${{ ! matrix.cross }}
5357
- run: cargo install cross

0 commit comments

Comments
 (0)