nixfiles/ci/flake-cron.nix
Kat Inskip 8aec107872
Some checks failed
flake-update / flake-update check (push) Has been cancelled
flake-update / flake-update (push) Has been cancelled
nodes / nodes check (push) Successful in 1m51s
nodes / nodes-home-home-base (push) Failing after 3m58s
nodes / nodes-home-home-graphical (push) Failing after 10m33s
nodes / nodes-home-home-neovim (push) Failing after 3m56s
nodes / nodes-home-home-shell (push) Failing after 3m55s
nodes / nodes-nixos-mai (push) Failing after 3m45s
nodes / nodes-nixos-mei (push) Failing after 3m58s
feat: awrawRAWARAWRWAR
2025-10-13 11:47:37 -07:00

63 lines
1.3 KiB
Nix

{
lib,
config,
...
}:
with lib; {
imports = [./common.nix];
config = {
name = "flake-update";
gh-actions = {
env = {
CACHIX_AUTH_TOKEN = "\${{ secrets.CACHIX_AUTH_TOKEN }}";
CACHIX_SIGNING_KEY = "\${{ secrets.CACHIX_SIGNING_KEY }}";
DISCORD_WEBHOOK_LINK = "\${{ secrets.DISCORD_WEBHOOK_LINK }}";
NIX_CONFIG = "\${{ secrets.NIX_CONFIG }}";
};
on = let
paths = [
"default.nix" # sourceCache
"ci/flake-cron.nix"
config.ci.gh-actions.path
];
in {
push = {
inherit paths;
};
pull_request = {
inherit paths;
};
schedule = [
{
cron = "0 0 * * *";
}
];
workflow_dispatch = {};
};
jobs.flake-update = {
step.nix-install."with".daemon = true;
step.flake-update = {
name = "flake update build";
order = 500;
run = "nix run .#nf-update";
env = {
NF_UPDATE_GIT_COMMIT = "1";
NF_UPDATE_CACHIX_PUSH = "1";
NF_CONFIG_ROOT = "\${{ github.workspace }}";
};
};
};
};
jobs = {
flake-update = {...}: {
imports = [./packages.nix];
};
};
ci.gh-actions.checkoutOptions = {
fetch-depth = 0;
};
};
}