From 4f248e198a7346e6f6b577ff78367d2721206e8b Mon Sep 17 00:00:00 2001 From: shun suzuki Date: Wed, 9 Oct 2024 16:16:41 +0900 Subject: [PATCH] add install dependencies step --- .github/actions/setup-build/action.yml | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/.github/actions/setup-build/action.yml b/.github/actions/setup-build/action.yml index 35405c1..2ff302a 100644 --- a/.github/actions/setup-build/action.yml +++ b/.github/actions/setup-build/action.yml @@ -16,4 +16,11 @@ runs: - name: Setup Rust uses: actions-rust-lang/setup-rust-toolchain@v1 with: - toolchain: 'stable' \ No newline at end of file + 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 \ No newline at end of file