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.
2 parents 32fbe4f + c750fc5 commit b6d5bc6Copy full SHA for b6d5bc6
.github/workflows/quarto-publish.yml
@@ -0,0 +1,30 @@
1
+name: Deploy Quarto site
2
+
3
+on:
4
+ push:
5
+ branches:
6
+ - main
7
8
+jobs:
9
+ build-deploy:
10
+ runs-on: ubuntu-latest
11
12
+ steps:
13
+ - name: Checkout repository
14
+ uses: actions/checkout@v3
15
16
+ - name: Install Quarto
17
+ uses: quarto-dev/quarto-actions/setup@v2
18
+ with:
19
+ version: latest
20
21
+ - name: Render site
22
+ run: quarto render
23
24
+ - name: Deploy to GitHub Pages
25
+ uses: actions/upload-pages-artifact@v1
26
27
+ path: _site
28
29
+ - name: Deploy
30
+ uses: actions/deploy-pages@v1
0 commit comments