-
Notifications
You must be signed in to change notification settings - Fork 2
60 lines (50 loc) · 1.58 KB
/
build-presentation.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
on:
push:
branches: [main, master]
pull_request:
branches: [main, master]
schedule:
# * is a special character in YAML so you have to quote this string
# Trigger once a week, on a Sunday (0)
- cron: "0 0 * * 0"
name: Build Presentation
jobs:
build-presentation:
runs-on: ubuntu-latest
env:
GITHUB_PAT: ${{ secrets.GITHUB_TOKEN }}
steps:
- uses: actions/checkout@v4
- uses: r-lib/actions/setup-pandoc@v2
with:
pandoc-version: "latest"
- uses: quarto-dev/quarto-actions/setup@v2
with:
version: pre-release
- run: |
quarto --version
quarto install extension quarto-ext/fontawesome --no-prompt
- uses: r-lib/actions/setup-r@v2
with:
use-public-rspm: true
- uses: r-lib/actions/setup-r-dependencies@v2
with:
pak-version: devel
upgrade: 'TRUE'
extra-packages: |
quarto-dev/quarto-r
r-lib/sessioninfo
- name: Render slides
run: |
callr::rscript("renderer.R")
shell: Rscript {0}
- name: Build PDF using decktape
run: |
rm -rf slides
mkdir slides && sudo chmod 777 slides
sudo npm install -g --unsafe-perm=true --allow-root decktape
docker run --rm -t -v `pwd`:/slides -v ~:/home/user astefanutti/decktape slides.html slides/slides.pdf
- name: Copy PDF slides to top-level directory
run: |
cp slides/slides.pdf . && rm -rf slides
- uses: stefanzweifel/git-auto-commit-action@v5.0.1