From 5890108f0ce77957e8a1f7eee570aa8570f8aba4 Mon Sep 17 00:00:00 2001 From: Brian Rose Date: Fri, 25 Oct 2024 16:58:26 -0400 Subject: [PATCH] fix path to previews --- .github/workflows/deploy-book.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/deploy-book.yaml b/.github/workflows/deploy-book.yaml index 4ed6cb3..466432a 100644 --- a/.github/workflows/deploy-book.yaml +++ b/.github/workflows/deploy-book.yaml @@ -70,7 +70,7 @@ jobs: branch: gh-pages folder: ${{ inputs.publish_dir }} clean: true - clean-exclude: preview/* # keep existing previews from other PRs + clean-exclude: _preview/* # keep existing previews from other PRs target-folder: ${{ inputs.destination_dir }} - name: Deploy to GitHub Pages with custom domain @@ -82,6 +82,6 @@ jobs: branch: gh-pages folder: ${{ inputs.publish_dir }} clean: true - clean-exclude: preview/* # keep existing previews from other PRs + clean-exclude: _preview/* # keep existing previews from other PRs target-folder: ${{ inputs.destination_dir }} CNAME: ${{ inputs.cname }} # how can we set this for the new action?