2020-10-03 21:26:36 +08:00
|
|
|
on:
|
|
|
|
push:
|
|
|
|
branches: master
|
|
|
|
|
|
|
|
name: bookdown
|
|
|
|
|
2020-10-03 21:51:47 +08:00
|
|
|
env:
|
|
|
|
isExtPR: ${{ github.event.pull_request.head.repo.fork == true }}
|
|
|
|
|
2020-10-03 21:26:36 +08:00
|
|
|
jobs:
|
|
|
|
build:
|
|
|
|
runs-on: ubuntu-16.04
|
|
|
|
env:
|
|
|
|
GITHUB_PAT: ${{ secrets.GITHUB_TOKEN }}
|
|
|
|
RSPM: https://packagemanager.rstudio.com/cran/__linux__/xenial/latest
|
|
|
|
steps:
|
|
|
|
- name: Checkout repo
|
|
|
|
uses: actions/checkout@v2
|
|
|
|
|
|
|
|
- name: Setup R
|
|
|
|
uses: r-lib/actions/setup-r@master
|
|
|
|
|
|
|
|
- name: Get R version
|
|
|
|
id: get-r-version
|
|
|
|
run: |
|
|
|
|
echo "::set-output name=version::$(Rscript -e 'cat(as.character(getRversion()))')"
|
|
|
|
shell: bash
|
|
|
|
|
|
|
|
- name: Cache R packages
|
|
|
|
uses: actions/cache@v2
|
|
|
|
with:
|
|
|
|
path: ${{ env.R_LIBS_USER }}
|
2020-10-05 04:40:48 +08:00
|
|
|
key: ${{ runner.os }}-${{ steps.get-r-version.outputs.version }}-3-
|
2020-10-03 21:26:36 +08:00
|
|
|
|
2020-10-03 21:35:34 +08:00
|
|
|
- name: Install pak
|
2020-10-03 21:26:36 +08:00
|
|
|
run: |
|
|
|
|
install.packages("pak", repos = "https://r-lib.github.io/p/pak/dev/")
|
|
|
|
shell: Rscript {0}
|
|
|
|
|
|
|
|
- name: Install system dependencies
|
|
|
|
if: runner.os == 'Linux'
|
|
|
|
run: |
|
|
|
|
while read -r cmd
|
|
|
|
do
|
|
|
|
eval sudo $cmd
|
|
|
|
done < <(Rscript -e 'writeLines(pak::local_system_requirements("ubuntu", "16.04"))')
|
|
|
|
|
|
|
|
- name: Install dependencies
|
|
|
|
run: |
|
|
|
|
pak::local_install_dev_deps()
|
|
|
|
shell: Rscript {0}
|
|
|
|
|
|
|
|
- name: Install pandoc and pandoc citeproc
|
|
|
|
run: |
|
|
|
|
brew install pandoc
|
|
|
|
brew install pandoc-citeproc
|
|
|
|
|
|
|
|
- name: Cache bookdown results
|
|
|
|
uses: actions/cache@v2
|
|
|
|
with:
|
|
|
|
path: _bookdown_files
|
2020-10-06 00:28:01 +08:00
|
|
|
key: bookdown-2-${{ hashFiles('**/*Rmd') }}
|
|
|
|
restore-keys: bookdown-2-
|
2020-10-03 21:26:36 +08:00
|
|
|
|
|
|
|
- name: Build site
|
2020-10-06 00:28:01 +08:00
|
|
|
run: |
|
|
|
|
# Allows [implcit heading links] to work; will need to convert
|
|
|
|
# to explicit before switching to visual editor
|
|
|
|
options(bookdown.render.file_scope = FALSE)
|
|
|
|
bookdown::render_book("index.Rmd", quiet = TRUE)
|
|
|
|
shell: Rscript {0}
|
2020-10-03 21:26:36 +08:00
|
|
|
|
|
|
|
- name: Deploy to Netlify
|
2020-10-03 21:51:47 +08:00
|
|
|
if: contains(env.isExtPR, 'false')
|
|
|
|
id: netlify-deploy
|
|
|
|
uses: nwtgck/actions-netlify@v1.1
|
|
|
|
with:
|
|
|
|
publish-dir: './_book'
|
|
|
|
production-branch: master
|
|
|
|
github-token: ${{ secrets.GITHUB_TOKEN }}
|
|
|
|
deploy-message:
|
|
|
|
'Deploy from GHA: ${{ github.event.pull_request.title || github.event.head_commit.message }} (${{ github.sha }})'
|
|
|
|
enable-pull-request-comment: false
|
|
|
|
enable-commit-comment: false
|
2020-10-03 21:26:36 +08:00
|
|
|
env:
|
|
|
|
NETLIFY_AUTH_TOKEN: ${{ secrets.NETLIFY_AUTH_TOKEN }}
|
|
|
|
NETLIFY_SITE_ID: ${{ secrets.NETLIFY_SITE_ID }}
|
2020-10-03 21:51:47 +08:00
|
|
|
timeout-minutes: 1
|