From 3a05cd339d40ecbcaef80143df6d66fa82875e49 Mon Sep 17 00:00:00 2001 From: AramJonghu Date: Sat, 16 May 2026 01:03:26 +0200 Subject: [PATCH] qml to arch --- .gitea/workflows/lint-qml.yml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/.gitea/workflows/lint-qml.yml b/.gitea/workflows/lint-qml.yml index 9d9a1ec..c162f26 100644 --- a/.gitea/workflows/lint-qml.yml +++ b/.gitea/workflows/lint-qml.yml @@ -5,18 +5,18 @@ on: jobs: lint: - runs-on: debian - container: debian:sid + runs-on: arch + container: archlinux:latest steps: - name: Install tools run: | - apt-get update - apt-get install -y --no-install-recommends \ + pacman -Syu --noconfirm + pacman -S --noconfirm \ git \ nodejs \ npm \ - qt6-declarative-dev-tools + qt6-declarative - name: Checkout uses: actions/checkout@v4