From 03772b33b15de422c2942ba94d4e8f8f9902cc84 Mon Sep 17 00:00:00 2001 From: niksirbi Date: Wed, 9 Aug 2023 15:54:08 +0100 Subject: [PATCH] use build folder --- .github/workflows/render_and_deploy.yml | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/.github/workflows/render_and_deploy.yml b/.github/workflows/render_and_deploy.yml index 80eb0fd..4d72440 100644 --- a/.github/workflows/render_and_deploy.yml +++ b/.github/workflows/render_and_deploy.yml @@ -37,13 +37,14 @@ jobs: run: | quarto render index.qmd --to revealjs - - name: Debug with ls + - name: Move outputs to build folder run: | - ls -al + mkdir build + mv index.html build/ + mv index_files build/ - name: Deploy uses: JamesIves/github-pages-deploy-action@v4 with: - folder: . - clean-exclude: index_files/* + folder: build \ No newline at end of file