We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c0f22f2 commit beff691Copy full SHA for beff691
.github/workflows/quarto-publish.yml
@@ -56,9 +56,13 @@ jobs:
56
- name: Set up Quarto
57
uses: quarto-dev/quarto-actions/setup@v2
58
59
- - name: Publish
60
- uses: quarto-dev/quarto-actions/publish@v2
+ - name: Render site
+ run: |
61
+ quarto render
62
+
63
+ - name: Deploy to GitHub Pages
64
+ uses: peaceiris/actions-gh-pages@v3
65
with:
- target: gh-pages
- env:
- GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
66
+ github_token: ${{ secrets.GITHUB_TOKEN }}
67
+ publish_dir: ./_site
68
+ force_orphan: true
0 commit comments