From 95754508115e19acef02c46c7f9d5dbadad31295 Mon Sep 17 00:00:00 2001 From: IluaAir Date: Sun, 19 Jul 2026 10:24:25 +0300 Subject: [PATCH] Update CI workflow to use custom runner and container - Changed the runner from `ubuntu-latest` to `rassbery` for the `ci-success` job. - Specified a custom container `catthehacker/ubuntu:act-22.04` for the job environment, enhancing compatibility and consistency in the CI process. --- .gitea/workflows/ci.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.gitea/workflows/ci.yml b/.gitea/workflows/ci.yml index 916727c..4ebe6af 100644 --- a/.gitea/workflows/ci.yml +++ b/.gitea/workflows/ci.yml @@ -42,7 +42,8 @@ jobs: ci-success: if: always() needs: [lint, test] - runs-on: ubuntu-latest + runs-on: rassbery + container: catthehacker/ubuntu:act-22.04 steps: - name: Verify all jobs succeeded if: ${{ contains(needs.*.result, 'failure') || contains(needs.*.result, 'cancelled') }}