From 5a2bef35c110bd7d7fafcc784a5f021f0a5a07ff Mon Sep 17 00:00:00 2001 From: Mathias Date: Sun, 24 May 2026 20:52:26 +0200 Subject: [PATCH] fix(ci): runs-on self-hosted to match koala runner labels MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The koala act_runner has labels [self-hosted, linux, amd64]. The default ubuntu-latest label doesn't match, so the release workflow silently produced zero runs on every push. Matches the convention used by hyperguild + infra workflows. Runner is offline at time of this commit — bring it up on koala via the act_runner systemd unit before expecting tags to appear. [skip-release] --- .gitea/workflows/release.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.gitea/workflows/release.yml b/.gitea/workflows/release.yml index e44cd81..7042f71 100644 --- a/.gitea/workflows/release.yml +++ b/.gitea/workflows/release.yml @@ -17,7 +17,7 @@ on: jobs: tag: - runs-on: ubuntu-latest + runs-on: self-hosted steps: - name: checkout uses: actions/checkout@v4