Skip to content

Commit

Permalink
Fix the multiple run commands issue
Browse files Browse the repository at this point in the history
  • Loading branch information
saipavan10-git committed Aug 14, 2024
1 parent 03b62d8 commit aa81905
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions .github/workflows/pkgdown.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -37,9 +37,10 @@ jobs:
run: Rscript -e 'install.packages("devtools")'

- name: Install all dependencies for the current R environment
run: Rscript -e 'devtools::install_github("ctsit/redcapcustodian")'
run: Rscript -e 'devtools::install_github("ctsit/rcc.ctsit", auth_token = Sys.getenv("CR_PAT"))'
run: Rscript -e 'devtools::install(dependencies = TRUE, auth_token = Sys.getenv("CR_PAT"), upgrade = "never")'
run: |
Rscript -e 'devtools::install_github("ctsit/redcapcustodian")'
Rscript -e 'devtools::install_github("ctsit/rcc.ctsit", auth_token = Sys.getenv("CR_PAT"))'
Rscript -e 'devtools::install(dependencies = TRUE, auth_token = Sys.getenv("CR_PAT"), upgrade = "never")'
- uses: r-lib/actions/setup-r-dependencies@v2
with:
Expand Down

0 comments on commit aa81905

Please sign in to comment.