Skip to content

Commit

Permalink
Use remotes to install rcc.billing in workflows
Browse files Browse the repository at this point in the history
  • Loading branch information
saipavan10-git committed Aug 14, 2024
1 parent 4e713fc commit 5960748
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion .github/workflows/pkgdown.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -37,14 +37,17 @@ jobs:
- name: Install devtools
run: Rscript -e 'install.packages("devtools")'

- name: Install remotes
run: Rscript -e 'install.packages("remotes")'

- name: Install public R dependencies
run: Rscript -e 'devtools::install_github("ctsit/redcapcustodian")'

- name: Install private R dependencies
run: Rscript -e 'devtools::install_github("ctsit/rcc.ctsit", auth_token = Sys.getenv("CR_PAT"))'

- name: Install local package
run: Rscript -e 'devtools::install(dependencies = TRUE, upgrade = "never")'
run: Rscript -e 'remotes::install_local(dependencies = TRUE, upgrade = "never")'

- uses: r-lib/actions/setup-r-dependencies@v2
with:
Expand Down

0 comments on commit 5960748

Please sign in to comment.