fix: get actions runner working for new personal git server
All checks were successful
Gitea Actions Demo / Explore-Gitea-Actions (push) Successful in 13s
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:
parent
01409f7ecb
commit
364974f31c
Binary file not shown.
|
@ -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 = {
|
||||||
|
|
Loading…
Reference in a new issue