Skip to content

Update biblio for right whale tech doc page #274

Update biblio for right whale tech doc page

Update biblio for right whale tech doc page #274

Workflow file for this run

# build Bookdown
on:
push:
branches:
- master
- dev
pull_request:
branches:
- master
name: build-book
env:
isExtPR: ${{ github.event.pull_request.head.repo.fork == true }}
jobs:
build:
env:
GITHUB_PAT: ${{ secrets.GITHUB_TOKEN }}
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: r-lib/actions/setup-pandoc@v2
- uses: r-lib/actions/setup-r@v2
with:
use-public-rspm: true
- uses: r-lib/actions/setup-r-dependencies@v2
- name: Build book
run: Rscript -e 'bookdown::render_book("index.Rmd", quiet = TRUE)'
- name: Deploy to gh-pages
uses: JamesIves/github-pages-deploy-action@v4
with:
GITHUB_TOKEN: ${{ secrets.ACCESS_TOKEN }}
BRANCH: gh-pages # The branch the action should deploy to.
FOLDER: _book # The folder the action should deploy.
CLEAN: true # Automatically remove deleted files from the deploy branch