From 5a98c1abc9c3dc6292ae049f1c899b62a60fc387 Mon Sep 17 00:00:00 2001 From: sbpro Date: Sat, 27 Dec 2025 01:02:06 +0000 Subject: [PATCH] Update github-runner-deploy.md --- github-runner-deploy.md | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/github-runner-deploy.md b/github-runner-deploy.md index de011cf..eb8abae 100644 --- a/github-runner-deploy.md +++ b/github-runner-deploy.md @@ -5,7 +5,7 @@ https://docs.gitea.com/usage/actions/act-runner ## Binary Runner (for host/native workloads) ### Create dedicated user -`sudo useradd -r -s /usr/sbin/nologin -m -c "Gitea Actions Runner" act_runner_native` +`sudo useradd -r -s /usr/sbin/nologin -m -c "Gitea Actions Runner" act_runner` ### Download latest version (0.2.12) ``` @@ -32,6 +32,8 @@ runner: - "native:host" - "linux-host:host" - "self-hosted:host" + - "ubuntu-latest:docker://docker.gitea.com/runner-images:ubuntu-latest" + - "ubuntu-24.04:docker://docker.gitea.com/runner-images:ubuntu-24.04" ``` The :host suffix tells the runner to execute jobs directly on the host instead of in Docker containers. @@ -74,7 +76,7 @@ WantedBy=multi-user.target ``` sudo systemctl daemon-reload -sudo systemctl enable --now act_runner_native +sudo systemctl enable --now act_runner ``` ## Docker Runner