Skip to content

Commit 4748272

Browse files
committed
Prep for deploy.
1 parent fe1bff1 commit 4748272

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

.github/workflows/deploy_shinyapps.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
if: github.repository_owner == 'r4ds'
1313
runs-on: ubuntu-latest
1414
steps:
15-
- uses: actions/checkout@v3
15+
- uses: actions/checkout@v4
1616
- uses: r-lib/actions/setup-r@v2
1717
with:
1818
r-version: '4.2.2'

.github/workflows/pr_check.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
name: pr_check_shinyapps
1212
runs-on: ubuntu-latest
1313
steps:
14-
- uses: actions/checkout@v3
14+
- uses: actions/checkout@v4
1515
- uses: r-lib/actions/setup-r@v2
1616
with:
1717
r-version: '4.2.2'

R/app_ui.R

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
#' @return A \code{\link[shiny]{tagList}} containing the UI.
44
#' @keywords internal
55
.app_ui <- function() {
6-
dashboard_title <- "DSLC Mentor Tool 2024-04-04"
6+
dashboard_title <- "DSLC Mentor Tool 2024-12-05"
77
shinydashboard::dashboardPage(
88
header = .ui_header(dashboard_title),
99
sidebar = .ui_sidebar(),

app.R

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,8 @@ pkgload::load_all(
99
quiet = TRUE
1010
)
1111

12-
# options("golem.app.prod" = TRUE)
13-
options("golem.app.prod" = FALSE)
12+
options("golem.app.prod" = TRUE)
13+
# options("golem.app.prod" = FALSE)
1414
run_app()
1515

1616
# Debug just the UI without login:

0 commit comments

Comments
 (0)