Skip to content

Updated readme, plot axis, and news #12

Updated readme, plot axis, and news

Updated readme, plot axis, and news #12

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-20.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 "$GITHUB_ACTOR@users.noreply.github.com"
git add --all docs
git commit -m 'Automatic build of tornado website'
git push