From 6a0242d654640a4c1e90af636abed26f7f13ff5a Mon Sep 17 00:00:00 2001 From: Zakaria El Orche Date: Wed, 12 Aug 2026 19:44:24 +0000 Subject: [PATCH] ci: use the global ubuntu-latest runner, not the org-scoped one MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The "org" runner label is scoped to the Pixel-Services organization — Flash5 lives under the separate Relism account, which can only reach the global runner (labels ubuntu-latest/ubuntu-24.04/ubuntu-22.04). This job just runs Maven inside a container, no Docker access needed, so ubuntu-latest is a fine fit. Co-Authored-By: Claude Sonnet 5 --- .gitea/workflows/publish-maven.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.gitea/workflows/publish-maven.yml b/.gitea/workflows/publish-maven.yml index 8307025..66d6891 100644 --- a/.gitea/workflows/publish-maven.yml +++ b/.gitea/workflows/publish-maven.yml @@ -16,7 +16,7 @@ on: jobs: publish: - runs-on: org + runs-on: ubuntu-latest container: image: maven:3.9-eclipse-temurin-21 steps: