mirror of
https://github.com/bartvdbraak/keyweave.git
synced 2025-04-28 15:21:21 +00:00
fix: add libssl-dev for linux
This commit is contained in:
parent
24f0318fc0
commit
bc62ca070b
1 changed files with 7 additions and 0 deletions
7
.github/workflows/deploy.yml
vendored
7
.github/workflows/deploy.yml
vendored
|
@ -36,6 +36,13 @@ jobs:
|
|||
shell: bash
|
||||
run: echo "VERSION=${GITHUB_REF#refs/tags/}}" >> $GITHUB_ENV
|
||||
|
||||
- name: Install development packages of OpenSSL
|
||||
shell: bash
|
||||
run: |
|
||||
if [ "${{ matrix.os }}" = "ubuntu-latest" ]; then
|
||||
sudo apt install libssl-dev -y
|
||||
else
|
||||
|
||||
- name: Install Rust
|
||||
uses: dtolnay/rust-toolchain@stable
|
||||
with:
|
||||
|
|
Loading…
Reference in a new issue