Skip to content

Merge branch 'master' of https://github.com/dexter-psychometrics/dexter #150

Merge branch 'master' of https://github.com/dexter-psychometrics/dexter

Merge branch 'master' of https://github.com/dexter-psychometrics/dexter #150

Workflow file for this run

on:
push:
branches:
- main
- master
name: pkgdown
jobs:
pkgdown:
runs-on: ubuntu-latest
env:
GITHUB_PAT: ${{ secrets.GITHUB_TOKEN }}
steps:
- uses: actions/checkout@v3
- 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: any::pkgdown, local::.
needs: website
- name: Install package
run: R CMD INSTALL .
- name: Build and deploy site
run: |
git config --local user.email "[email protected]"
git config --local user.name "GitHub Actions"
Rscript -e 'assignInNamespace("check_missing_topics",function(...){TRUE},"pkgdown");pkgdown::build_site_github_pages(new_process = FALSE, install = FALSE);pkgdown::deploy_to_branch(new_process = FALSE)'