From 1c791cd3c83ebc51db8348c6ebce8b4d4eff42d9 Mon Sep 17 00:00:00 2001 From: Elysia Date: Wed, 28 Jan 2026 19:21:16 +0800 Subject: [PATCH] =?UTF-8?q?fix:=20=E6=9B=B4=E6=96=B0=E6=9E=84=E5=BB=BA?= =?UTF-8?q?=E4=BE=9D=E8=B5=96=EF=BC=8C=E7=A7=BB=E9=99=A4=E4=B8=8D=E5=BF=85?= =?UTF-8?q?=E8=A6=81=E7=9A=84=E5=8C=85=E5=B9=B6=E4=BC=98=E5=8C=96=E5=AE=89?= =?UTF-8?q?=E8=A3=85=E5=91=BD=E4=BB=A4?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/workflows/build.yml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index efb1b4be..7c462ecd 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -34,6 +34,7 @@ jobs: strategy: matrix: os: [ubuntu-latest] + package: [deb, rpm] include: - package: deb docker_image: "debian:12" @@ -46,12 +47,12 @@ jobs: if: matrix.package == 'deb' run: | apt-get update - apt-get install -y curl git wget build-essential devscripts fakeroot equivs lintian + apt-get install -y curl git wget devscripts fakeroot equivs lintian - name: Install Build Dependencies if: matrix.package == 'rpm' run: | - dnf install -y curl git wget @development-tools rpmdevtools rpmlint + dnf install -y curl git wget rpm-build rpmdevtools rpmlint - name: Checkout Code uses: actions/checkout@v6