Skip to content

Commit

Permalink
update bioconductor in GA
Browse files Browse the repository at this point in the history
downgrade htmlwidgets to 1.6.2 to be compatible with sortable 0.5.0
  • Loading branch information
matt-sd-watson committed Nov 29, 2023
1 parent faa868e commit 3412d97
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 4 deletions.
4 changes: 4 additions & 0 deletions .github/workflows/check-package.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,10 @@ jobs:
run: |
sudo apt-get update
sudo apt-get -y install libcurl4-openssl-dev libharfbuzz-dev libfribidi-dev libgeos-dev
- name: Install required install packages and remote repos
run: |
install.packages(c("remotes", "BiocManager"))
BiocManager::install(version = "3.18")
# name: Install required packages not listed in the package description
# run: |
# install.packages(c("BiocManager", "caret", "Seurat", "tidyverse"))
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ jobs:
- name: Install required install packages and remote repos
run: |
install.packages(c("remotes", "BiocManager"))
BiocManager::install(version = "3.17")
BiocManager::install(version = "3.18")
BiocManager::install(c('BiocGenerics', 'GenomeInfoDbData', 'limma', 'zlibbioc'))
BiocManager::install(ask = F)
remotes::install_version("rsconnect", "0.8.29")
Expand All @@ -39,7 +39,7 @@ jobs:
APPNAME: cytomarker
SERVER: shinyapps.io
run: |
options(repos=c(BiocManager::repositories(version = "3.17")), rsconnect.packrat = TRUE)
options(repos=c(BiocManager::repositories(version = "3.18")), rsconnect.packrat = TRUE)
rsconnect::setAccountInfo("${{ secrets.SHINYAPPS_ACC }}", "${{ secrets.SHINYAPPS_TOKEN }}", "${{ secrets.SHINYAPPS_SEC }}")
rsconnect::deployApp(appName = "${{ env.APPNAME }}", account = "${{ secrets.SHINYAPPS_ACC }}", server = "${{ env.SERVER }}")
shell: Rscript {0}
2 changes: 1 addition & 1 deletion DESCRIPTION
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ Imports:
RColorBrewer,
shinytest2,
tidyr,
htmlwidgets,
htmlwidgets (== 1.6.2),
shinydashboard,
shinyBS,
stringr,
Expand Down
2 changes: 1 addition & 1 deletion deploy.R
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,6 @@

library(rsconnect)
devtools::load_all()
options(repos=c(BiocManager::repositories(version = "3.17")))
options(repos=c(BiocManager::repositories(version = "3.18")))
rsconnect::deployApp(account = 'camlab')

0 comments on commit 3412d97

Please sign in to comment.