From 7637e794badb992a77ff29280d47b0ea304975e6 Mon Sep 17 00:00:00 2001 From: 2 * r + 2 * t <61896496+soramanew@users.noreply.github.com> Date: Fri, 20 Mar 2026 20:26:30 +1100 Subject: [PATCH] ci: fix image update Also fix job name --- .github/workflows/update-image.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/update-image.yml b/.github/workflows/update-image.yml index f57103c9..18337ad1 100644 --- a/.github/workflows/update-image.yml +++ b/.github/workflows/update-image.yml @@ -6,7 +6,7 @@ on: - cron: "0 0 * * 0" jobs: - update-flake: + build-image: runs-on: ubuntu-latest steps: @@ -23,7 +23,7 @@ jobs: RUN pacman -Syu --needed --noconfirm sudo base-devel cmake ninja fish git clang qt6-declarative python && \ useradd -m builder && \ echo 'builder ALL=(ALL) NOPASSWD:ALL' >> /etc/sudoers && \ - sudo -u git clone https://aur.archlinux.org/yay-bin.git /home/builder/yay-bin && \ + sudo -u builder git clone https://aur.archlinux.org/yay-bin.git /home/builder/yay-bin && \ cd /home/builder/yay-bin && \ sudo -u builder makepkg -si --noconfirm && \ sudo -u builder yay -S --noconfirm quickshell-git && \