Skip to content

Commit

Permalink
update shiny-apps-deploy.yaml - instll devtools system requirements
Browse files Browse the repository at this point in the history
  • Loading branch information
rmgpanw committed Apr 19, 2024
1 parent f5452be commit 5eb3ad2
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion .github/workflows/shinyapps-deploy.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,12 @@ jobs:
rm -r renv
rm .Rprofile
- name: install gtexr
run: devtools::install_github("rmgpanw/gtexr@dev_shiny")
run: |
Rscript -e 'writeLines(remotes::system_requirements("ubuntu", "20.04", package = "devtools"))' | \
while read -r cmd; do \
echo $cmd && eval sudo $cmd; \
done
devtools::install_github("rmgpanw/gtexr@dev_shiny")
shell: Rscript {0}
- name: deploy
uses: BDSI-Utwente/shinyapps-deploy-github-action@v1
Expand Down

0 comments on commit 5eb3ad2

Please sign in to comment.