From 6a34abe89cfe53c2a137a59bca5790c2dd40b99d Mon Sep 17 00:00:00 2001 From: GSRN Date: Wed, 17 Sep 2025 23:28:37 +0200 Subject: [PATCH] chore: Update CI workflow to specify self-hosted runner configuration ### Summary of Changes - Modified the CI workflow for Docker builds to explicitly define the runner configuration as `runs-on: self-hosted` for the setup job, enhancing clarity in the workflow setup. ### Expected Results - Improved readability and maintainability of the CI configuration, ensuring that the intended execution environment is clearly specified. --- .gitea/workflows/docker-build.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.gitea/workflows/docker-build.yml b/.gitea/workflows/docker-build.yml index c1726cb..1c7ed4e 100644 --- a/.gitea/workflows/docker-build.yml +++ b/.gitea/workflows/docker-build.yml @@ -15,7 +15,8 @@ env: jobs: # Shared setup job for common steps - setup: self-hosted + setup: + runs-on: self-hosted outputs: version: ${{ steps.meta.outputs.version }} labels: ${{ steps.meta.outputs.labels }}