Skip to content

Commit ecfceb3

Browse files
authored
Binary artifacts take 2 (#112)
* try installing libssl-dev before building artifact
1 parent 5eae487 commit ecfceb3

1 file changed

Lines changed: 4 additions & 0 deletions

File tree

.github/workflows/publish-binaries.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -48,6 +48,8 @@ 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+
- run: sudo apt install -y libssl-dev
52+
if: matrix.os == 'ubuntu-latest'
5153
- run: cargo build --release --target ${{ matrix.rust-target }}
5254
if: ${{ ! matrix.cross }}
5355
- run: cargo install cross
@@ -87,6 +89,8 @@ jobs:
8789
- uses: actions/checkout@v4
8890
- name: Install Rust
8991
run: rustup update stable --no-self-update && rustup default stable && rustup target add ${{ matrix.rust-target }}
92+
- run: sudo apt install -y libssl-dev
93+
if: matrix.os == 'ubuntu-latest'
9094
- run: cargo build --release --target ${{ matrix.rust-target }}
9195
if: ${{ ! matrix.cross }}
9296
- run: cargo install cross

0 commit comments

Comments
 (0)