fix: get actions runner working for new personal git server
All checks were successful
Gitea Actions Demo / Explore-Gitea-Actions (push) Successful in 13s

I had to delete /var/lib/private/gitea-runner in addition to this change
(since I was migrating to a new git server).
This commit is contained in:
alejandro-angulo 2024-10-30 23:08:40 -07:00
parent 01409f7ecb
commit 364974f31c
Signed by: alejandro-angulo
GPG key ID: 75579581C74554B6
2 changed files with 15 additions and 12 deletions

Binary file not shown.

View file

@ -76,18 +76,21 @@
}) })
]; ];
services.gitea-actions-runner.instances = { services.gitea-actions-runner = {
gospel = { package = pkgs.forgejo-runner;
enable = true; instances = {
name = config.networking.hostName; gospel = {
url = "https://gitea.kilonull.com"; enable = true;
tokenFile = config.age.secrets.gitea-runner-gospel.path; name = config.networking.hostName;
labels = [ url = "https://git.alejandr0angul0.dev";
"ubuntu-latest:docker://node:16-bullseye" tokenFile = config.age.secrets.gitea-runner-gospel.path;
"ubuntu-22.04:docker://node:16-bullseye" labels = [
"ubuntu-20.04:docker://node:16-bullseye" "ubuntu-latest:docker://node:16-bullseye"
"ubuntu-18.04:docker://node:16-buster" "ubuntu-22.04:docker://node:16-bullseye"
]; "ubuntu-20.04:docker://node:16-bullseye"
"ubuntu-18.04:docker://node:16-buster"
];
};
}; };
}; };
virtualisation = { virtualisation = {