From 7d6ecaf144debc34dc73ec86ac8f659845e2ff1a Mon Sep 17 00:00:00 2001 From: Marcello Lamonaca Date: Wed, 18 Oct 2023 13:45:03 +0200 Subject: [PATCH] fix link check with `path_prefix` --- .github/workflows/oranda.yml | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/.github/workflows/oranda.yml b/.github/workflows/oranda.yml index f0535b2..519ac2d 100644 --- a/.github/workflows/oranda.yml +++ b/.github/workflows/oranda.yml @@ -72,12 +72,14 @@ jobs: - name: Prepare HTML for link checking # untitaker/hyperlink supports no site prefixes, move entire site into # a subfolder - run: mkdir /tmp/public/ && cp -R public /tmp/public/oranda + run: | + mkdir /tmp/public/ && cp -R public /tmp/public/json-to-env + cp public/index.html /tmp/public - name: Check HTML for broken internal links uses: untitaker/hyperlink@0.1.29 with: - args: /tmp/public/oranda + args: /tmp/public # Deploy to our gh-pages branch (creating it if it doesn't exist) # the "public" dir that oranda made above will become the root dir