From 691b363f88535c51ce3e8c44ac109c1a18afb3e6 Mon Sep 17 00:00:00 2001 From: bigjakk Date: Thu, 16 Apr 2026 08:56:19 -0700 Subject: [PATCH] ci: remove sudo from workflow (Gitea runner is root) --- .github/workflows/build-release.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/build-release.yml b/.github/workflows/build-release.yml index a09732e..4d33683 100644 --- a/.github/workflows/build-release.yml +++ b/.github/workflows/build-release.yml @@ -108,9 +108,9 @@ jobs: - name: Install system dependencies if: steps.version-check.outputs.SKIP == 'false' run: | - sudo dpkg --add-architecture i386 - sudo apt-get update -qq - sudo apt-get install -y --no-install-recommends \ + dpkg --add-architecture i386 + apt-get update -qq + apt-get install -y --no-install-recommends \ wine wine32 wine64 \ libnss3 libatk1.0-0 libatk-bridge2.0-0 libcups2t64 \ libdrm2 libxkbcommon0 libxcomposite1 libxdamage1 \