Skip to content

Remove XML and dev httpuv #219

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 3 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
30 changes: 14 additions & 16 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -58,25 +58,23 @@ jobs:
r-version: ${{ matrix.config.r }}
packages: remotes
extra-packages: |
any::devtools
any::rsconnect
any::packrat
any::knitr
any::renv
any::shiny
any::cpp11
any::plogr
any::BH
any::RcppArmadillo
any::RcppEigen
any::progress
any::AsioHeaders
cran::devtools
cran::rsconnect
cran::packrat
cran::knitr
cran::renv
cran::shiny
cran::cpp11
cran::plogr
cran::BH
cran::RcppArmadillo
cran::RcppEigen
cran::progress
cran::AsioHeaders
cran::shinyvalidate
hadley/shinySignals
jcheng5/bubbles
jcheng5/googleCharts
rstudio/shinyvalidate
cran/XML
rstudio/httpuv

- name: Install remaining packages
shell: Rscript {0}
Expand Down
2 changes: 1 addition & 1 deletion deploy
Original file line number Diff line number Diff line change
Expand Up @@ -146,7 +146,7 @@ if (opts$all) {
deployApps <- function(app) {
cat('-------- Deploying', app, '--------\n')
if (opts$deploy) {
res <- try(rsconnect::deployApp(app, account = opts$account, server = opts$server))
res <- try(rsconnect::deployApp(app, account = opts$account, server = opts$server, forceUpdate = TRUE))
if (inherits(res, 'try-error')) {
return(1)
}
Expand Down
Loading