Skip to content

pkgdown

pkgdown #1

Workflow file for this run

# Workflow derived from https://github.com/r-lib/actions/tree/master/examples
on:
push:
tags: ['*']
workflow_dispatch:
name: pkgdown
jobs:
pkgdown:
runs-on: ubuntu-22.04
env:
GITHUB_PAT: ${{ secrets.GITHUB_TOKEN }}
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
ref: master
- 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
with:
extra-packages: |
rmarkdown
knitr
pkgdown
any::XML
pak-version: devel
- name: build site
shell: bash
run: |
Rscript -e 'pkgdown::build_site()'
- name: Deploy package
run: |
git config --local user.name "$GITHUB_ACTOR"
git config --local user.email "[email protected]"
git add --all docs
git commit -m 'Automatic build of tornado website'
git push