Skip to content

testing github actions #1

testing github actions

testing github actions #1

Workflow file for this run

name: Deploy pkgdown
on:
push:
branches:
- main # or your default branch
jobs:
deploy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2

Check failure on line 12 in .github/workflows/pkgdown.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/pkgdown.yml

Invalid workflow file

You have an error in your yaml syntax on line 12
- uses: r-lib/actions/setup-r@v2
- name: Install dependencies
run: R -e 'install.packages(c("remotes", "pkgdown")); remotes::install_deps()'
- name: Build pkgdown site
run: R -e 'pkgdown::deploy_to_branch(new_process = TRUE)'