From 137b38e30d0e312cab76d3395ef0f36a1381d4a5 Mon Sep 17 00:00:00 2001 From: Barret Schloerke Date: Tue, 12 Nov 2024 10:40:20 -0500 Subject: [PATCH 1/3] Remove XML --- .github/workflows/deploy.yml | 2 -- 1 file changed, 2 deletions(-) diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml index 3aea0478..56c50ab1 100644 --- a/.github/workflows/deploy.yml +++ b/.github/workflows/deploy.yml @@ -75,8 +75,6 @@ jobs: jcheng5/bubbles jcheng5/googleCharts rstudio/shinyvalidate - cran/XML - rstudio/httpuv - name: Install remaining packages shell: Rscript {0} From d72fb181c0de8f3e981740e82ff46cc645a08ceb Mon Sep 17 00:00:00 2001 From: Barret Schloerke Date: Tue, 12 Nov 2024 11:19:12 -0500 Subject: [PATCH 2/3] Add `forceUpdate = TRUE` to deploy --- deploy | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/deploy b/deploy index 3326bb2e..2f34bddb 100755 --- a/deploy +++ b/deploy @@ -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) } From 085cd8938a654298ec73e04d4c2c0a78a40a77b2 Mon Sep 17 00:00:00 2001 From: Barret Schloerke Date: Tue, 12 Nov 2024 12:58:29 -0500 Subject: [PATCH 3/3] Install as much from cran and not any --- .github/workflows/deploy.yml | 28 ++++++++++++++-------------- 1 file changed, 14 insertions(+), 14 deletions(-) diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml index 56c50ab1..ba6674e5 100644 --- a/.github/workflows/deploy.yml +++ b/.github/workflows/deploy.yml @@ -58,23 +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 - name: Install remaining packages shell: Rscript {0}