From 63ecc20364eaa2c8aee61f8c0a8e579bdaf86c66 Mon Sep 17 00:00:00 2001 From: Krishan <33421343+kfiven@users.noreply.github.com> Date: Mon, 16 May 2022 16:40:09 +0530 Subject: [PATCH] Update actions to use required deps for ubuntu --- .github/workflows/tauri.yml | 4 ++-- .github/workflows/test.yml | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/tauri.yml b/.github/workflows/tauri.yml index f6eaee1..e621383 100644 --- a/.github/workflows/tauri.yml +++ b/.github/workflows/tauri.yml @@ -29,11 +29,11 @@ jobs: uses: actions-rs/toolchain@v1.0.7 with: toolchain: stable - - name: Install webkit2gtk (ubuntu only) + - name: Install dependencies (ubuntu only) if: matrix.platform == 'ubuntu-latest' run: | sudo apt-get update - sudo apt-get install -y webkit2gtk-4.0 + sudo apt-get install -y libgtk-3-dev webkit2gtk-4.0 libappindicator3-dev librsvg2-dev patchelf - name: Install cinny dependencies run: cd cinny && npm ci - name: Install tauri dependencies diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 0bf29b5..23a5b51 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -24,11 +24,11 @@ jobs: uses: actions-rs/toolchain@v1.0.7 with: toolchain: stable - - name: Install webkit2gtk (ubuntu only) + - name: Install dependencies (ubuntu only) if: matrix.platform == 'ubuntu-latest' run: | sudo apt-get update - sudo apt-get install -y webkit2gtk-4.0 + sudo apt-get install -y libgtk-3-dev webkit2gtk-4.0 libappindicator3-dev librsvg2-dev patchelf - name: Install cinny dependencies run: cd cinny && npm ci - name: Install tauri dependencies