From 6cbc9d4edaabdb962112a7d5230fa931c0859f5d Mon Sep 17 00:00:00 2001 From: hermes-explorigin Date: Sun, 30 Aug 2026 20:33:38 +0000 Subject: [PATCH] Switch CI runner to Ubuntu (containerized act_runner) --- .gitea/workflows/deploy.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.gitea/workflows/deploy.yml b/.gitea/workflows/deploy.yml index a0d85e9..29152fe 100644 --- a/.gitea/workflows/deploy.yml +++ b/.gitea/workflows/deploy.yml @@ -10,7 +10,7 @@ name: Test, Build & Deploy jobs: test-and-build: - runs-on: host + runs-on: ubuntu-latest steps: - uses: actions/checkout@v4 @@ -38,7 +38,7 @@ jobs: # Release the built app only when a commit lands on the default branch. needs: test-and-build if: github.ref == 'refs/heads/master' - runs-on: host + runs-on: ubuntu-latest steps: - uses: actions/checkout@v4