We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 982e39e commit 1c13f1dCopy full SHA for 1c13f1d
.github/workflows/publish.yml
@@ -0,0 +1,34 @@
1
+on:
2
+ push:
3
+ branches: [main]
4
+ workflow_dispatch:
5
+
6
+name: Publish site
7
8
+jobs:
9
+ build-deploy:
10
+ runs-on: ubuntu-latest
11
+ permissions:
12
+ contents: write
13
+ steps:
14
+ - uses: actions/checkout@v4
15
16
+ - uses: r-lib/actions/setup-r@v2
17
+ with:
18
+ use-public-rspm: true
19
20
+ - uses: r-lib/actions/setup-r-dependencies@v2
21
22
+ packages: |
23
+ yaml
24
+ htmltools
25
+ here
26
27
+ - uses: quarto-dev/quarto-actions/setup@v2
28
29
+ - name: Publish to GitHub Pages
30
+ uses: quarto-dev/quarto-actions/publish@v2
31
32
+ target: gh-pages
33
+ env:
34
+ GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
0 commit comments