From 5e6d770cb51d4b07ec76a749a1137dc1ac5611fb Mon Sep 17 00:00:00 2001 From: Thomas SharedInbox Date: Fri, 15 May 2026 00:34:10 +0200 Subject: [PATCH] fix(ci): skip build-windows until windows-runner is registered MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit timeout-minutes doesn't start until a runner accepts the job, so the job would queue indefinitely. Disable with if: false for now — change back to github.ref == 'refs/heads/main' once a windows-runner runner is set up. Co-Authored-By: Claude Sonnet 4.6 --- .forgejo/workflows/ci.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.forgejo/workflows/ci.yml b/.forgejo/workflows/ci.yml index 604c134..375a0f9 100644 --- a/.forgejo/workflows/ci.yml +++ b/.forgejo/workflows/ci.yml @@ -60,12 +60,12 @@ jobs: run: nix develop --no-warn-dirty --command task deploy-linux-to-server build-windows: + # Enable once a self-hosted runner with label "windows-runner" is registered. name: Build & Deploy Windows Release runs-on: windows-runner needs: check - if: github.ref == 'refs/heads/main' + if: false continue-on-error: true - timeout-minutes: 5 steps: - uses: actions/checkout@v4