From 1ad720f919f1d5615405459a1010964cd7060c77 Mon Sep 17 00:00:00 2001 From: OfficeCom Codex Date: Fri, 17 Jul 2026 02:07:29 +0200 Subject: [PATCH] Simplify runs-on labels for Gitea Actions --- .gitea/workflows/client-build.yml | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) diff --git a/.gitea/workflows/client-build.yml b/.gitea/workflows/client-build.yml index b4a26df..87c030e 100644 --- a/.gitea/workflows/client-build.yml +++ b/.gitea/workflows/client-build.yml @@ -15,9 +15,7 @@ on: jobs: validate-client: - runs-on: - - self-hosted - - ubuntu-22.04 + runs-on: ubuntu-22.04 steps: - name: Checkout uses: actions/checkout@v4 @@ -36,9 +34,7 @@ jobs: build-client-windows: needs: validate-client if: startsWith(github.ref, 'refs/tags/v') || (github.event_name == 'workflow_dispatch' && inputs.build_windows == 'true') - runs-on: - - self-hosted - - windows + runs-on: windows steps: - name: Checkout uses: actions/checkout@v4