-
Notifications
You must be signed in to change notification settings - Fork 74
51 lines (42 loc) · 1.37 KB
/
pkgdown.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
on:
push:
branches:
- master
pull_request:
branches:
- master
name: pkgdown
jobs:
pkgdown:
runs-on: ubuntu-latest
if: "contains(github.event.head_commit.message, 'sitedeploy')"
env:
GITHUB_PAT: ${{ secrets.GITHUB_TOKEN }}
GDTOOLS_CACHE_DIR: "/usr/share/fonts/gfonts/"
steps:
- uses: actions/checkout@v2
- uses: r-lib/actions/setup-r@v2
with:
r-version: release
use-public-rspm: true
- uses: r-lib/actions/setup-pandoc@v2
- uses: r-lib/actions/setup-r-dependencies@v2
with:
extra-packages: |
any::pkgdown
- name: "Install 'Google Fonts'"
run: |
fontreq=$(Rscript -e "cat(gdtools::install_gfont_script(family = 'Open Sans'))")
sudo -s eval "$fontreq"
fontreq=$(Rscript -e "cat(gdtools::install_gfont_script(family = 'Roboto'))")
sudo -s eval "$fontreq"
fontreq=$(Rscript -e "cat(gdtools::install_gfont_script(family = 'Fira Code'))")
sudo -s eval "$fontreq"
shell: bash
- name: Install package
run: R CMD INSTALL .
- name: Deploy package
run: |
git config --local user.email "[email protected]"
git config --local user.name "GitHub Actions"
Rscript -e 'pkgdown::deploy_to_branch(new_process = FALSE, clean = TRUE)'