Add sections to function reference #21
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 and edited by me (Dennis) | |
# Need help debugging build failures? Start at https://github.com/r-lib/actions#where-to-find-help | |
on: | |
pull_request: | |
workflow_dispatch: | |
name: Test build of pkgdown | |
jobs: | |
pkgdown: | |
runs-on: ubuntu-latest | |
env: | |
GITHUB_PAT: ${{ secrets.GITHUB_TOKEN }} | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: r-lib/actions/setup-pandoc@v1 | |
- uses: r-lib/actions/setup-r@v1 | |
with: | |
use-public-rspm: true | |
- uses: r-lib/actions/setup-r-dependencies@v1 | |
with: | |
extra-packages: pkgdown, roxygen2 | |
needs: website | |
- name: Deploy package | |
run: | | |
git config --local user.email "[email protected]" | |
git config --local user.name "GitHub Actions" | |
Rscript -e 'roxygen2::roxygenise()' | |
Rscript -e 'pkgdown::deploy_to_branch(new_process = FALSE, branch = "gh-pages-test")' | |