From b672fa241c140046444184b37b446e5bdcd0d6a9 Mon Sep 17 00:00:00 2001 From: Barret Schloerke Date: Fri, 8 Nov 2024 13:50:01 -0500 Subject: [PATCH] Remove static mac deps to be installed (#275) --- .github/internal/install-shinyverse/action.yaml | 2 +- inst/apps/001-hello/app.R | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/internal/install-shinyverse/action.yaml b/.github/internal/install-shinyverse/action.yaml index c4b3d5123e..dbcc568014 100644 --- a/.github/internal/install-shinyverse/action.yaml +++ b/.github/internal/install-shinyverse/action.yaml @@ -67,4 +67,4 @@ runs: if: runner.os == 'macOS' uses: rstudio/shiny-workflows/setup-macOS-dependencies@v1 with: - extra-packages: ${{ steps.mac-deps.outputs.pkgs }} terra Cairo FreeType RMySQL textshaping units + extra-packages: ${{ steps.mac-deps.outputs.pkgs }} Cairo FreeType RMySQL textshaping units diff --git a/inst/apps/001-hello/app.R b/inst/apps/001-hello/app.R index 3a5988f2cb..6c8d56099d 100644 --- a/inst/apps/001-hello/app.R +++ b/inst/apps/001-hello/app.R @@ -1,5 +1,6 @@ ### Keep this line to manually test this shiny application. Do not edit this line; shinycoreci::::is_manual_app + library(shiny) # Define UI for app that draws a histogram ----