Skip to content

Commit

Permalink
Explicitly activate pkgdown internet
Browse files Browse the repository at this point in the history
  • Loading branch information
LukasWallrich committed Aug 13, 2024
1 parent 307683b commit 92ebf0a
Showing 1 changed file with 5 additions and 6 deletions.
11 changes: 5 additions & 6 deletions .github/workflows/pkgdown.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -41,16 +41,15 @@ jobs:
- name: All Dependencies
run: ./run.sh install_all

- name: Install pkgdown
- name: Build site
run: |
R -e "
install.packages(c('pkgdown'));
install.packages(c('pkgdown', 'devtools');
devtools::install_local();
options(pkgdown.internet = TRUE)
pkgdown::build_site_github_pages(new_process = FALSE)
"
- name: Build site
run: pkgdown::build_site_github_pages(new_process = FALSE, install = TRUE)
shell: Rscript {0}

- name: Deploy to GitHub pages 🚀
if: github.event_name != 'pull_request'
uses: JamesIves/[email protected]
Expand Down

0 comments on commit 92ebf0a

Please sign in to comment.