File tree Expand file tree Collapse file tree 2 files changed +40
-0
lines changed Expand file tree Collapse file tree 2 files changed +40
-0
lines changed Original file line number Diff line number Diff line change
1
+ on :
2
+ workflow_dispatch :
3
+ push :
4
+ branches : main
5
+
6
+ name : Quarto Publish
7
+
8
+ jobs :
9
+ build-deploy :
10
+ runs-on : ubuntu-latest
11
+ permissions :
12
+ contents : write
13
+ steps :
14
+ - name : Check out repository
15
+ uses : actions/checkout@v4
16
+
17
+ - name : Set up Quarto
18
+ uses : quarto-dev/quarto-actions/setup@v2
19
+ with :
20
+ version : 1.6.40
21
+
22
+ - name : Install R
23
+ uses : r-lib/actions/setup-r@v2
24
+ with :
25
+ r-version : ' 4.4.2'
26
+
27
+ - name : Install R Dependencies
28
+ uses : r-lib/actions/setup-renv@v2
29
+ with :
30
+ cache-version : 1
31
+
32
+ - name : Render and Publish
33
+ uses : quarto-dev/quarto-actions/publish@v2
34
+ with :
35
+ target : gh-pages
36
+ env :
37
+ GITHUB_TOKEN : ${{ secrets.GITHUB_TOKEN }}
Original file line number Diff line number Diff line change 2
2
.Rhistory
3
3
.RData
4
4
.Ruserdata
5
+
6
+ /.quarto /
7
+ /_site /
You can’t perform that action at this time.
0 commit comments