Skip to content

docs: update actions workflow #10

docs: update actions workflow

docs: update actions workflow #10

Workflow file for this run

# based onhttps://github.com/horosin/pages-deploy
# and https://lucacozzuto.medium.com/automatic-reports-with-bookdown-and-github-actions-3c19498394aa
# and https://stackoverflow.com/questions/76723921/install-a-github-r-package-for-a-github-action
# and https://docs.github.com/en/actions/learn-github-actions/variables
# and https://github.com/salimkayabasi/drawio-github-action-installation/blob/main/.github/workflows/drawio.yml
name: github pages
on:
push:
branches:
- master
paths:
- 'documentation/**'
- '.github/workflows/**'
pull_request:
paths:
- 'documentation/**'
- '.github/workflows/**'
env:
DRAWIO_DISABLE_UPDATE: true
DISPLAY: :99.0
CONFIG_FILE: config.yml
R_ENVIRONMENT: github
jobs:
bookdown:
name: Render-Book
runs-on: ubuntu-20.04
defaults:
run:
working-directory: ./documentation
steps:
- uses: actions/checkout@v4
- uses: r-lib/actions/setup-r@v2
with:
r-version: 'release'
rtools-version: '42'
use-public-rspm: true
- uses: r-lib/actions/setup-pandoc@v2
- name: Install TinyTeX
uses: r-lib/actions/setup-tinytex@v2
env:
TINYTEX_INSTALLER: TinyTeX
- name: Install packages
run: Rscript -e 'install.packages(c("tidyverse", "rmarkdown", "bookdown", "config", "webshot", "readr", "DT", "knitr", "ggplot2", "readxl"))'
- name: Install phantomjs
run: Rscript -e 'webshot::install_phantomjs()'
- name: Render Book
run: Rscript -e 'bookdown::render_book("index.Rmd", "all")'
- uses: actions/upload-artifact@v4
with:
name: build
path: ./documentation/build
if-no-files-found: error
checkout-and-deploy:
runs-on: ubuntu-20.04
needs: bookdown
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Download artifact
uses: actions/download-artifact@v4
with:
# Artifact name
name: build
# Destination path
path: docs
- name: Deploy to GitHub Pages
uses: Cecilapp/GitHub-Pages-deploy@v3
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
build_dir: docs
branch: gh-pages