From a86c3ff393f1342aa51b14028e8397b0d1debaa1 Mon Sep 17 00:00:00 2001 From: InoUno Date: Thu, 2 Jan 2025 05:42:30 +0100 Subject: [PATCH] Fix ubuntu packages necessary for tauri v2 --- .github/workflows/release.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index b77f43e..ca77ac5 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -8,7 +8,7 @@ jobs: strategy: fail-fast: false matrix: - platform: [macos-latest, ubuntu-20.04, windows-latest] + platform: [macos-latest, ubuntu-22.04, windows-latest] runs-on: ${{ matrix.platform }} steps: @@ -47,10 +47,10 @@ jobs: uses: dtolnay/rust-toolchain@stable - name: Install dependencies for tauri build (ubuntu only) - if: matrix.platform == 'ubuntu-20.04' + if: matrix.platform == 'ubuntu-22.04' uses: awalsh128/cache-apt-pkgs-action@latest with: - packages: libgtk-3-dev libwebkit2gtk-4.0-dev libappindicator3-dev librsvg2-dev patchelf + packages: libgtk-3-dev libwebkit2gtk-4.1-dev libappindicator3-dev librsvg2-dev patchelf version: 1.0 - name: Create necessary distDir for tauri to compile