-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
672f841
commit b32286d
Showing
1 changed file
with
14 additions
and
37 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,70 +1,47 @@ | ||
name: Build Site | ||
|
||
on: | ||
push: | ||
branches: [main, master] | ||
|
||
name: Build Site | ||
|
||
jobs: | ||
adodownr: | ||
build: | ||
runs-on: ubuntu-latest | ||
env: | ||
GITHUB_PAT: ${{ secrets.GITHUB_TOKEN }} | ||
|
||
steps: | ||
- name: Checkout project | ||
uses: actions/checkout@v4.1.1 | ||
with: | ||
fetch-depth: 0 | ||
uses: actions/checkout@v4 | ||
|
||
- name: Setup R | ||
uses: r-lib/actions/setup-r@v2 | ||
with: | ||
use-public-rspm: true | ||
|
||
- name: Install R dependencies | ||
uses: r-lib/actions/setup-r-dependencies@v1 | ||
with: | ||
additional-packages: devtools, here | ||
|
||
- name: Install Quarto | ||
uses: quarto-dev/quarto-actions/setup@v2 | ||
with: | ||
version: 1.0.37 | ||
|
||
- name: Install 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") | ||
run: | | ||
install.packages("devtools") | ||
devtools::install_github("lsms-worldbank/adodownr") | ||
shell: Rscript {0} | ||
|
||
- name: Build site | ||
run: adodownr::build_site(pkg_dir = here::here(), site_dir = here::here()) | ||
shell: Rscript {0} | ||
|
||
- name: Deploy to GitHub pages | ||
- name: Deploy to GitHub Pages | ||
uses: JamesIves/github-pages-deploy-action@v4.5.0 | ||
with: | ||
clean: false | ||
folder: docs | ||
branch: gh-pages | ||
target-folder: docs |