Skip to content
This repository has been archived by the owner on Jan 10, 2025. It is now read-only.

☠️ Archive this repo (#36) #13

☠️ Archive this repo (#36)

☠️ Archive this repo (#36) #13

Workflow file for this run

on:
push:
branches: master
name: Pkgdown
jobs:
pkgdown:
runs-on: macOS-latest
steps:
- uses: actions/checkout@master
- uses: r-lib/actions/setup-r@master
- uses: r-lib/actions/setup-pandoc@master
- name: Install dependencies
run: |
install.packages("remotes")
remotes::install_deps(dependencies = TRUE)
remotes::install_dev("pkgdown")
shell: Rscript {0}
- name: Install package
run: R CMD INSTALL .
- name: Deploy package
run: pkgdown::deploy_to_branch(new_process = FALSE)
shell: Rscript {0}