Roxygen update #16
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Workflow derived from https://github.com/r-lib/actions/tree/master/examples | |
on: | |
push: | |
tags: ['*'] | |
workflow_dispatch: | |
name: pkgdown & Doxygen | |
jobs: | |
pkgdown: | |
# runs-on: ubuntu-latest | |
runs-on: ubuntu-22.04 | |
env: | |
GITHUB_PAT: ${{ secrets.GITHUB_TOKEN }} | |
steps: | |
- uses: actions/checkout@v4 | |
- 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 | |
- name: build site | |
shell: bash | |
run: | | |
Rscript -e 'pkgdown::build_site()' | |
- name: install Doxygen | |
shell: bash | |
run: | | |
sudo apt-get install -y doxygen graphviz | |
- name: run Doxygen | |
shell: bash | |
run: | | |
doxygen Doxyfile | |
- name: Deploy package | |
run: | | |
git config --local user.name "$GITHUB_ACTOR" | |
git config --local user.email "[email protected]" | |
git pull | |
git add docs/*.* | |
git commit -m 'Automatic build of lhs website' | |
git push |