-
Notifications
You must be signed in to change notification settings - Fork 0
70 lines (60 loc) · 2 KB
/
build_adodown_site.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
61
62
63
64
65
66
67
68
69
70
on:
push:
branches: [main, master]
name: Build Site
jobs:
adodownr:
runs-on: ubuntu-latest
env:
GITHUB_PAT: ${{ secrets.GITHUB_TOKEN }}
steps:
- name: Checkout project
uses: actions/[email protected]
with:
fetch-depth: 0
- name: Setup R
uses: r-lib/actions/setup-r@v2
with:
use-public-rspm: true
- name: Install Quarto
uses: quarto-dev/quarto-actions/setup@v2
with:
version: 1.0.37
- name: Install Linux system dependencies
run: |
sudo apt-get install -y make
sudo apt-get install -y libcurl4-openssl-dev
sudo apt-get install -y libssl-dev
sudo apt-get install -y libfontconfig1-dev
sudo apt-get install -y libfreetype6-dev
sudo apt-get install -y libfribidi-dev
sudo apt-get install -y libharfbuzz-dev
sudo apt-get install -y libjpeg-dev
sudo apt-get install -y libpng-dev
sudo apt-get install -y libtiff-dev
sudo apt-get install -y libicu-dev
sudo apt-get install -y pandoc
sudo apt-get install -y libxml2-dev
sudo apt-get install -y libgit2-dev
sudo apt-get install -y libssh2-1-dev
sudo apt-get install -y zlib1g-dev
sudo apt-get install -y git
- name: Install devtools
run: install.packages("devtools")
shell: Rscript {0}
- name: Install adodownr
run: devtools::install_github("lsms-worldbank/adodownr")
shell: Rscript {0}
- name: Install here
run: install.packages("here")
shell: Rscript {0}
- name: Build site
run: adodownr::build_site(pkg_dir = here::here(), site_dir = here::here(), rm_old_site_dir = FALSE)
shell: Rscript {0}
- name: Deploy to GitHub pages
uses: JamesIves/[email protected]
with:
clean: true
folder: docs
branch: gh-pages
target-folder: docs