Skip to content

Commit

Permalink
add install dependencies step
Browse files Browse the repository at this point in the history
  • Loading branch information
s5suzuki committed Oct 9, 2024
1 parent 30e8aca commit 4f248e1
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion .github/actions/setup-build/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,4 +16,11 @@ runs:
- name: Setup Rust
uses: actions-rust-lang/setup-rust-toolchain@v1
with:
toolchain: 'stable'
toolchain: 'stable'

- name: install dependencies
shell: bash
if: inputs.os == 'ubuntu-latest'
run: |
sudo apt-get update
sudo apt-get install -y libgtk-3-dev libwebkit2gtk-4.0-dev librsvg2-dev

0 comments on commit 4f248e1

Please sign in to comment.