Skip to content

Commit

Permalink
Prep for deploy.
Browse files Browse the repository at this point in the history
  • Loading branch information
jonthegeek committed Dec 5, 2024
1 parent fe1bff1 commit 4748272
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/deploy_shinyapps.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
if: github.repository_owner == 'r4ds'
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- uses: r-lib/actions/setup-r@v2
with:
r-version: '4.2.2'
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/pr_check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
name: pr_check_shinyapps
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- uses: r-lib/actions/setup-r@v2
with:
r-version: '4.2.2'
Expand Down
2 changes: 1 addition & 1 deletion R/app_ui.R
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
#' @return A \code{\link[shiny]{tagList}} containing the UI.
#' @keywords internal
.app_ui <- function() {
dashboard_title <- "DSLC Mentor Tool 2024-04-04"
dashboard_title <- "DSLC Mentor Tool 2024-12-05"
shinydashboard::dashboardPage(
header = .ui_header(dashboard_title),
sidebar = .ui_sidebar(),
Expand Down
4 changes: 2 additions & 2 deletions app.R
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,8 @@ pkgload::load_all(
quiet = TRUE
)

# options("golem.app.prod" = TRUE)
options("golem.app.prod" = FALSE)
options("golem.app.prod" = TRUE)
# options("golem.app.prod" = FALSE)
run_app()

# Debug just the UI without login:
Expand Down

0 comments on commit 4748272

Please sign in to comment.