meta: Fix lastmod date error in GitHub Actions

This commit is contained in:
Jan Kremer 2025-02-04 12:01:56 +01:00
parent b6232c6c49
commit fa8cf1f9cd
Signed by: jan
GPG key ID: A7DA689CB3B078EC
2 changed files with 3 additions and 18 deletions

View file

@ -47,24 +47,6 @@
${pkgs.hugo}/bin/hugo --minify
'').outPath;
};
test = {
type = "app";
program =
(pkgs.writeShellScript "test-website" ''
set -e
${pkgs.hugo}/bin/hugo --environment="development"
'').outPath;
};
server = {
type = "app";
program =
(pkgs.writeShellScript "serve-website" ''
set -e
${pkgs.hugo}/bin/hugo server
'').outPath;
};
});
};
}