File tree 1 file changed +8
-6
lines changed
1 file changed +8
-6
lines changed Original file line number Diff line number Diff line change 9
9
jobs :
10
10
build-deploy :
11
11
name : Render & publish Quarto book
12
- runs-on : macOS-latest
12
+ # runs-on: macOS-latest
13
+ runs-on : ubuntu-latest
13
14
permissions :
14
15
contents : write
15
16
steps :
@@ -30,18 +31,19 @@ jobs:
30
31
31
32
- name : Install librsvg
32
33
# convert svg to png for pdf
33
- run : brew install librsvg
34
+ # run: brew install librsvg
35
+ run : sudo apt-get install librsvg2-bin # librsvg2-dev
34
36
35
37
# - name: Install qpdf
36
38
# # to prevent R install from failing
37
39
# run: brew install qpdf
38
40
39
41
- name : Install R
40
42
uses : r-lib/actions/setup-r@v2
41
- env :
42
- HOMEBREW_NO_INSTALLED_DEPENDENTS_CHECK : true
43
- with :
44
- r-version : ' 4.4.1' # 2024-09-04
43
+ # env:
44
+ # HOMEBREW_NO_INSTALLED_DEPENDENTS_CHECK: true
45
+ # with:
46
+ # r-version: '4.4.1' # 2024-09-04
45
47
46
48
- name : Install R dependencies
47
49
uses : r-lib/actions/setup-r-dependencies@v2
You can’t perform that action at this time.
0 commit comments