diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 76e1150..2ac6e50 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -25,6 +25,9 @@ jobs: runs-on: ubuntu-latest steps: - uses: actions/checkout@main + with: + submodules: true + fetch-depth: 0 - name: Setup Pages id: pages uses: actions/configure-pages@main diff --git a/flake.nix b/flake.nix index b24a830..a31df7a 100644 --- a/flake.nix +++ b/flake.nix @@ -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; - }; }); }; }