Skip to content

Commit

Permalink
commit
Browse files Browse the repository at this point in the history
  • Loading branch information
oddish3 committed Feb 6, 2025
1 parent 4a9cc92 commit ed571e7
Showing 1 changed file with 11 additions and 6 deletions.
17 changes: 11 additions & 6 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -52,10 +52,15 @@ jobs:
- name: Set up Quarto
uses: quarto-dev/quarto-actions/setup@v2

# 7. Render and Publish
- name: Render and Publish
uses: quarto-dev/quarto-actions/publish@v2
# 7. Render Quarto Site
- name: Render Quarto Site
run: |
Rscript -e 'renv::activate()'
quarto render
# 8. Publish to GitHub Pages
- name: Publish to GitHub Pages
uses: peaceiris/actions-gh-pages@v3
with:
target: gh-pages
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: _site # Adjust if your output directory differs

0 comments on commit ed571e7

Please sign in to comment.