v1.7.0 #62
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
name: pkgdown | |
on: | |
# Run when a release is published, or a pre-release is changed to a release. Reference: | |
# https://docs.github.com/en/actions/using-workflows/events-that-trigger-workflows#release | |
# https://docs.github.com/en/webhooks/webhook-events-and-payloads#release | |
release: | |
types: [released] | |
# It is also possible to manually trigger this workflow for a selected tag/branch | |
# from the "Actions" tab on GitHub. | |
workflow_dispatch: | |
permissions: | |
contents: write | |
jobs: | |
main: | |
name: Build and publish website | |
runs-on: ubuntu-latest | |
timeout-minutes: 30 | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v3 | |
- name: Install R | |
uses: r-lib/actions/setup-r@v2 | |
with: | |
use-public-rspm: true # Dramatically speeds up installation of dependencies. | |
- name: Install R package dependencies | |
uses: r-lib/actions/setup-r-dependencies@v2 | |
with: | |
extra-packages: any::pkgdown, local::. | |
- name: Configure git | |
run: | | |
git config user.name "$GITHUB_ACTOR" | |
git config user.email "[email protected]" | |
- name: Build and deploy site | |
shell: Rscript {0} | |
run: pkgdown::deploy_to_branch(branch = "bot/github-pages") | |
env: | |
GITHUB_PAT: ${{ secrets.GITHUB_TOKEN }} |