Skip to content

ci: Update and fix the pkgdown workflow #82

ci: Update and fix the pkgdown workflow

ci: Update and fix the pkgdown workflow #82

Workflow file for this run

name: pkgdown
on: push
# on:
# push:
# branches: [main]
# workflow_dispatch:
permissions:
contents: write
jobs:
main:
name: Build and publish website
runs-on: ubuntu-latest
timeout-minutes: 60
steps:
- name: Checkout repository
uses: actions/checkout@v3
- name: Install pandoc
uses: r-lib/actions/setup-pandoc@v2
- name: Install R
uses: r-lib/actions/setup-r@v2
- 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 = "test/gh-pages")
# env:
# GITHUB_PAT: ${{ secrets.GITHUB_TOKEN }}