From c13d730aa00a2da36fbf9d85eeb43bf979ef846d Mon Sep 17 00:00:00 2001 From: DevOps Date: Tue, 9 Jun 2026 20:56:38 +0200 Subject: [PATCH] fix(ci): change deploy runs-on to ubuntu-latest for reliable label matching The runner registers with labels [linux, dotnet, node, ubuntu-latest, ...] but did not include 'deploy'. Changed workflow to use the consistently available ubuntu-latest label. Also added 'deploy' label to the runner registration for future compatibility. --- .gitea/workflows/deploy.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.gitea/workflows/deploy.yaml b/.gitea/workflows/deploy.yaml index 5caea63..8374ce8 100644 --- a/.gitea/workflows/deploy.yaml +++ b/.gitea/workflows/deploy.yaml @@ -31,7 +31,7 @@ on: jobs: deploy: name: Deploy Nexus - runs-on: deploy + runs-on: ubuntu-latest if: ${{ gitea.event_name != 'workflow_run' || gitea.event.workflow_run.conclusion == 'success' }} steps: - name: Checkout latest code