From 787706010f8494cf8367e3719bbaf15a80f7fb93 Mon Sep 17 00:00:00 2001 From: lucasmalla <49912636+lucasmalla@users.noreply.github.com> Date: Tue, 29 Oct 2024 09:07:58 +0300 Subject: [PATCH] Update main.yml --- .github/workflows/main.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index a08849c..ad4d960 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -30,13 +30,13 @@ jobs: - name: Install required packages run: | Rscript -e 'install.packages(c("rms", "Matrix"), repos="https://cloud.r-project.org")' - Rscript -e 'install.packages(c("haven", "shinythemes", "tidyverse", "shiny", "shinydashboard", "shinyWidgets", "lubridate", "stringr", "readxl", "plotly", "zoo", "gridExtra", "cowplot", "anytime", "data.table", "DT", "shinyjs", "flextable", "officer", "ggpubr", "EpiReport", "xlsx", "zscorer", "Hmisc", "survey", "questionr", "writexl", "openxlsx", "readr"), dep=TRUE)' + Rscript -e 'install.packages(c("haven", "shinythemes", "tidyverse", "shiny", "shinydashboard", "shinyWidgets", "lubridate", "stringr", "readxl", "plotly", "zoo", "gridExtra", "cowplot", "anytime", "data.table", "DT", "shinyjs", "flextable", "officer", "ggpubr", "EpiReport", "xlsx", "zscorer", "Hmisc", "survey", "questionr", "writexl", "openxlsx", "readr"),repos="https://cloud.r-project.org", dep=TRUE)' - name: Install rsconnect from CRAN with logs run: | Rscript -e 'install.packages("rsconnect", repos="https://cloud.r-project.org", dependencies = TRUE)' Rscript -e 'print("rsconnect successfully installed.")' - + Rscript -e 'print(sessionInfo())' - name: Verify rsconnect is installed run: | Rscript -e 'if (!"rsconnect" %in% installed.packages()) stop("rsconnect not installed")'