Skip to content

Commit

Permalink
install upstream deps in deploy action
Browse files Browse the repository at this point in the history
  • Loading branch information
MattCowgill committed Jan 17, 2022
1 parent 7a29e89 commit a2c10d3
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/deploy-shiny.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,8 @@ jobs:
- uses: r-lib/actions/setup-r@master
- name: install-packages
run: |
Rscript -e "install.packages(c('shiny', 'rsconnect', 'remotes'), type = 'binary')"
Rscript -e "remotes::install_deps(type = 'binary', force = FALSE)"
Rscript -e "install.packages(c('shiny', 'rsconnect', 'remotes'), type = 'binary', dependencies = TRUE)"
Rscript -e "remotes::install_deps(type = 'binary', dependencies = TRUE, force = FALSE)"
- name: authorise-shiny
run: |
Rscript -e "rsconnect::setAccountInfo(name='mattcowgill', token=${{secrets.SHINYAPPS_TOKEN}}, secret=${{secrets.SHINYAPPS_SECRET}})"
Expand Down

0 comments on commit a2c10d3

Please sign in to comment.