Skip to content

Commit

Permalink
manual install
Browse files Browse the repository at this point in the history
  • Loading branch information
yjunechoe authored Jul 19, 2023
1 parent e3e63fe commit cddbc8b
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion .github/workflows/check-pkgdown.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,11 @@ jobs:
- name: Install dependencies
run: |
options(download.file.method = "wget")
devtools::install_github("https://github.com/ropensci-org/rotemplate")
pkg <- "ropensci-org/rotemplate"
URL <- paste0("https://api.github.com/repos/", pkg, "/tarball")
tmp <- tempfile(fileext = ".tar.gz")
download.file(URL, tmp, method = "wget")
install.packages(tmp, type = "source")
shell: Rscript {0}

- name: Check pkgdown
Expand Down

0 comments on commit cddbc8b

Please sign in to comment.