Skip to content

Commit

Permalink
chore: fix release workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
nothinux committed Aug 26, 2023
1 parent ebea418 commit 230d5e3
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 1 deletion.
7 changes: 6 additions & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,12 @@ jobs:
if: matrix.os == 'ubuntu-20.04'
run: |
sudo apt-get update
sudo apt-get install -y --no-install-recommends xz-utils liblz4-tool musl-tools
sudo apt-get install -y --no-install-recommends xz-utils liblz4-tool musl-tools libssl-dev
- name: Install packages (mac)
if: matrix.os != 'ubuntu-20.04'
run: |
brew update
brew install [email protected]
- name: Install Rust
uses: actions-rs/toolchain@v1
with:
Expand Down
4 changes: 4 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,11 @@
name: Test
on:
push:
paths:
- "src/**.rs"
pull_request:
paths:
- "src/**.rs"

jobs:
test:
Expand Down

0 comments on commit 230d5e3

Please sign in to comment.