File tree Expand file tree Collapse file tree 1 file changed +8
-9
lines changed Expand file tree Collapse file tree 1 file changed +8
-9
lines changed Original file line number Diff line number Diff line change 7
7
8
8
jobs :
9
9
build-deploy :
10
- runs-on : ubuntu-latest # GitHub-hosted Ubuntu 24.04
10
+ runs-on : ubuntu-latest
11
11
permissions :
12
12
contents : write
13
13
14
14
steps :
15
- # 1 ββββββββββββ Check out the repo
16
15
- name : Check out repository
17
16
uses : actions/checkout@v4
18
17
19
- # 2 ββββββββββββ Install the matching version of R
20
18
- name : Set up R
21
19
uses : r-lib/actions/setup-r@v2
22
20
with :
23
- r-version : ' 4.5.0' # β matches your lock-file
21
+ r-version : ' 4.5.0'
24
22
25
- # 3 ββββββββββββ Install *system* libraries needed by curl, ragg, etc.
26
23
- name : Install Linux libraries needed by R packages
27
24
run : |
28
25
sudo apt-get update
@@ -31,19 +28,21 @@ jobs:
31
28
libfontconfig1-dev \
32
29
libfreetype6-dev \
33
30
libx11-dev \
31
+ libharfbuzz-dev \
32
+ libfribidi-dev \
33
+ libpng-dev \
34
+ libtiff5-dev \
35
+ libjpeg-dev \
34
36
pandoc
35
37
36
- # 4 ββββββββββββ Restore the renv library + cache
37
38
- name : Install R dependencies via renv
38
39
uses : r-lib/actions/setup-renv@v2
39
40
with :
40
- cache-version : 2 # bump => new cache under R-4.5
41
+ cache-version : 2
41
42
42
- # 5 ββββββββββββ Install Quarto CLI
43
43
- name : Set up Quarto
44
44
uses : quarto-dev/quarto-actions/setup@v2
45
45
46
- # 6 ββββββββββββ Render the site and push to gh-pages
47
46
- name : Render and Publish
48
47
uses : quarto-dev/quarto-actions/publish@v2
49
48
with :
You canβt perform that action at this time.
0 commit comments