forgejo: use forgejo-actions-runner
Some checks reported warnings
/ check (push) Has been cancelled

This commit is contained in:
notohh 2023-10-06 23:52:11 -04:00
parent adada17551
commit 5bc22bfb55
Signed by: notohh
GPG key ID: BD47506D475EE86D

View file

@ -38,23 +38,25 @@
};
};
};
services.gitea-actions-runner.instances.main = {
enable = true;
name = config.networking.hostName;
url = "https://git.flake.sh";
token = config.sops.secrets.forgejo-runner-token.path;
labels = [
"debian-latest:docker://node:18-bullseye"
"ubuntu-latest:docker://node:18-bullseye"
#"native:host"
];
hostPackages = with pkgs; [
bash
curl
coreutils
wget
gitMinimal
wget
];
services.gitea-actions-runner = {
package = pkgs.forgejo-actions-runner;
instances.sakura = {
enable = true;
name = config.networking.hostName;
url = "https://git.flake.sh";
token = config.sops.secrets.forgejo-runner-token.path;
labels = [
"debian-latest:docker://node:18-bullseye"
"ubuntu-latest:docker://node:18-bullseye"
#"native:host"
];
hostPackages = with pkgs; [
bash
curl
coreutils
wget
gitMinimal
];
};
};
}