From 4f2b8f8c952b9c44a79b73fe9f4b788640bb47e8 Mon Sep 17 00:00:00 2001 From: Garrick Aden-Buie Date: Tue, 7 Jan 2025 16:31:20 -0500 Subject: [PATCH] fix(examples): Fix deployment of brand.yml example (#1157) * fix: use `brand.yml` for deployed example app name too * fix: add `markdown` to required packages --- inst/examples-shiny/brand.yml/deploy.R | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/inst/examples-shiny/brand.yml/deploy.R b/inst/examples-shiny/brand.yml/deploy.R index 3ed0ae83f..7c6431f87 100644 --- a/inst/examples-shiny/brand.yml/deploy.R +++ b/inst/examples-shiny/brand.yml/deploy.R @@ -1,9 +1,9 @@ withr::local_temp_libpaths() -install.packages(c("shiny", "ggplot2", "yaml", "thematic")) +install.packages(c("shiny", "ggplot2", "yaml", "thematic", "markdown")) rsconnect::deployApp( rprojroot::find_package_root_file("inst/examples-shiny/brand.yml"), - appName = "brand", + appName = "brand.yml", account = "bslib", forceUpdate = TRUE )