From dac2437f18d35107650f242984168c60602a5aaa Mon Sep 17 00:00:00 2001 From: Tlntin Date: Thu, 5 Jan 2023 18:12:00 +0800 Subject: [PATCH] =?UTF-8?q?=E9=99=8D=E7=BA=A7ubuntu=E7=89=88=E6=9C=AC?= =?UTF-8?q?=E5=88=B020.04=EF=BC=8C=E4=BB=A5=E5=85=BC=E5=AE=B9=E6=9B=B4?= =?UTF-8?q?=E5=A4=9A=E8=80=81=E8=AE=BE=E5=A4=87=E3=80=82?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Tlntin --- .github/workflows/pake_build.yaml | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/.github/workflows/pake_build.yaml b/.github/workflows/pake_build.yaml index aac097d..6d1cdfe 100644 --- a/.github/workflows/pake_build.yaml +++ b/.github/workflows/pake_build.yaml @@ -4,7 +4,6 @@ on: # Sequence of patterns matched against refs/tags tags: - "V*" - workflow_dispatch: jobs: build: @@ -15,7 +14,7 @@ jobs: build: [linux, windows, macos] include: - build: linux - os: ubuntu-latest + os: ubuntu-20.04 rust: nightly target: x86_64-unknown-linux-musl - build: windows @@ -46,13 +45,13 @@ jobs: target: ${{ matrix.target }} - name: install dependencies (ubuntu only) - if: matrix.os == 'ubuntu-latest' + if: matrix.os == 'ubuntu-20.04' run: | sudo apt-get update sudo apt-get install -y libgtk-3-dev webkit2gtk-4.0 libappindicator3-dev librsvg2-dev patchelf gnome-video-effects gnome-video-effects-extra - name: build for Ubuntu - if: matrix.os == 'ubuntu-latest' + if: matrix.os == 'ubuntu-20.04' run: npm run build:all-unix - name: build for MacOS