From f57577fefd606051101faecdbad955c4d3f77529 Mon Sep 17 00:00:00 2001 From: AramJonghu Date: Sat, 16 May 2026 01:11:17 +0200 Subject: [PATCH] aur to arch --- .gitea/workflows/lint-qml.yml | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/.gitea/workflows/lint-qml.yml b/.gitea/workflows/lint-qml.yml index c162f26..447ab1f 100644 --- a/.gitea/workflows/lint-qml.yml +++ b/.gitea/workflows/lint-qml.yml @@ -13,11 +13,21 @@ jobs: run: | pacman -Syu --noconfirm pacman -S --noconfirm \ + base-devel \ git \ nodejs \ npm \ + sudo \ qt6-declarative + - name: Install quickshell-git (AUR) + run: | + useradd -m builder + echo "builder ALL=(ALL) NOPASSWD: ALL" > /etc/sudoers.d/builder + chmod 440 /etc/sudoers.d/builder + su - builder -c "cd /tmp && git clone https://aur.archlinux.org/quickshell-git.git" + su - builder -c "cd /tmp/quickshell-git && makepkg -si --noconfirm --needed" + - name: Checkout uses: actions/checkout@v4