Skip to content

Commit

Permalink
install suggested dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
gabora committed Jun 6, 2024
1 parent e88b5e2 commit ccfe18e
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion .github/workflows/check-bioc.yml
Original file line number Diff line number Diff line change
Expand Up @@ -261,7 +261,10 @@ jobs:

- name: Build pkgdown site
if: github.ref == 'refs/heads/master' && env.run_pkgdown == 'true' && runner.os == 'Linux'
run: pkgdown::build_site_github_pages(new_process = FALSE, install = FALSE)
run: |
install.packages("htmltools")
install.packages("markdown")
pkgdown::build_site_github_pages(new_process = FALSE, install = FALSE)
shell: Rscript {0}
## Note that you need to run pkgdown::deploy_to_branch(new_process = FALSE)
## at least one locally before this will work. This creates the gh-pages
Expand Down

0 comments on commit ccfe18e

Please sign in to comment.