Skip to content

Commit 14a8326

Browse files
committed
switch to ubuntu
1 parent f50d500 commit 14a8326

File tree

1 file changed

+8
-6
lines changed

1 file changed

+8
-6
lines changed

.github/workflows/render_book.yml

+8-6
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,8 @@ on:
99
jobs:
1010
build-deploy:
1111
name: Render & publish Quarto book
12-
runs-on: macOS-latest
12+
# runs-on: macOS-latest
13+
runs-on: ubuntu-latest
1314
permissions:
1415
contents: write
1516
steps:
@@ -30,18 +31,19 @@ jobs:
3031

3132
- name: Install librsvg
3233
# 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
3436

3537
# - name: Install qpdf
3638
# # to prevent R install from failing
3739
# run: brew install qpdf
3840

3941
- name: Install R
4042
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
4547

4648
- name: Install R dependencies
4749
uses: r-lib/actions/setup-r-dependencies@v2

0 commit comments

Comments
 (0)