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 50ffd74 commit ae096a0Copy full SHA for ae096a0
.github/workflows/build-quarto-website.yml
@@ -18,7 +18,8 @@ jobs:
18
pages: write
19
id-token: write
20
steps:
21
-
+
22
+ # Checkout repository and submodules
23
- name: "Check out repository"
24
uses: actions/checkout@v5
25
with:
@@ -33,7 +34,7 @@ jobs:
33
34
- name: "Render working directory"
35
uses: quarto-dev/quarto-actions/render@v2
36
- path: "docs"
37
+ path: "."
38
39
40
# Upload a tar file that will work with GitHub Pages
@@ -43,7 +44,7 @@ jobs:
43
44
uses: actions/upload-pages-artifact@v3
45
46
retention-days: 1
- path: 'docs/_site'
47
+ path: '_site'
48
49
50
# Use an Action deploy to push the artifact onto GitHub Pages
_quarto.yml
@@ -1,5 +1,6 @@
1
project:
2
type: website
3
+ output-dir: _site
4
5
website:
6
title: "blog"
0 commit comments