Skip to content

Commit

Permalink
update gh actions (#65)
Browse files Browse the repository at this point in the history
  • Loading branch information
apreshill authored Jul 16, 2020
1 parent d56498a commit e5bfd5f
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions .github/workflows/pkgdown.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ jobs:
run: |
install.packages("remotes")
remotes::install_deps(dependencies = TRUE)
remotes::install_dev("pkgdown")
install.packages("pkgdown")
install.packages("ggplot2")
install.packages("here")
install.packages("dplyr")
Expand All @@ -45,5 +45,7 @@ jobs:
run: R CMD INSTALL .

- name: Deploy package
run: pkgdown::deploy_to_branch(new_process = FALSE)
shell: Rscript {0}
run: |
git config --local user.email "[email protected]"
git config --local user.name "GitHub Actions"
Rscript -e 'pkgdown::deploy_to_branch(new_process = FALSE)'

0 comments on commit e5bfd5f

Please sign in to comment.