From 3a0e46461ffa5fa673f4415fae25976b0885bb0a Mon Sep 17 00:00:00 2001 From: "james.balamuta@gmail.com" Date: Sun, 20 Oct 2024 01:32:56 -0700 Subject: [PATCH] Switch to full deployment via GH Pages action --- .github/workflows/publish-docs.yml | 11 +++++------ 1 file changed, 5 insertions(+), 6 deletions(-) diff --git a/.github/workflows/publish-docs.yml b/.github/workflows/publish-docs.yml index e6e0aea..2029752 100644 --- a/.github/workflows/publish-docs.yml +++ b/.github/workflows/publish-docs.yml @@ -24,15 +24,12 @@ jobs: with: version: "pre-release" - # Change to the docs directory - - name: "Switch to docs directory" - shell: bash - run: | - cd docs/ - # Render the Quarto file - name: "Render working directory" uses: quarto-dev/quarto-actions/render@v2 + with: + path: "docs" + # Upload a tar file that will work with GitHub Pages # Make sure to set a retention day to avoid running into a cap @@ -41,6 +38,8 @@ jobs: uses: actions/upload-pages-artifact@v2 with: retention-days: 1 + path: 'docs/_site' + # Use an Action deploy to push the artifact onto GitHub Pages # This requires the `Action` tab being structured to allow for deployment