From d5d46e501b9c84b5e45f1ba0d785e8b8f75d01f7 Mon Sep 17 00:00:00 2001 From: Soliprem Date: Fri, 12 Dec 2025 05:44:06 +0100 Subject: [PATCH 1/2] workflows: fix the ci for deployment of the docs website --- .github/workflows/manual.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/manual.yml b/.github/workflows/manual.yml index 3b4cc38b..2127fd0a 100644 --- a/.github/workflows/manual.yml +++ b/.github/workflows/manual.yml @@ -47,7 +47,7 @@ jobs: - uses: DeterminateSystems/nix-installer-action@main - run: | nix build .#docs -Lv - cp -r result/share/doc/nvf public + cp -r result/share/doc public - uses: peaceiris/actions-gh-pages@v4 with: github_token: ${{ secrets.GITHUB_TOKEN }} From 720630064e59e9ea5a09b0eb7381e1c27ec1912c Mon Sep 17 00:00:00 2001 From: Soliprem Date: Fri, 12 Dec 2025 05:52:53 +0100 Subject: [PATCH 2/2] workflows: fix CI for docs previews same as before. New root seems to be share/doc/, and not share/doc/nvf --- .github/workflows/docs-preview.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/docs-preview.yml b/.github/workflows/docs-preview.yml index a238a41d..c09ea14c 100644 --- a/.github/workflows/docs-preview.yml +++ b/.github/workflows/docs-preview.yml @@ -49,7 +49,7 @@ jobs: mkdir -p $PREVIEW_DIR # Copy the build files to the preview subdirectory - cp -rvf ../result/share/doc/nvf/* ./$PREVIEW_DIR + cp -rvf ../result/share/doc/* ./$PREVIEW_DIR # Configure git to use the GitHub Actions token for authentication git config --global user.name "GitHub Actions"