From ceceb73003705c6fbf4405941accb95fea1870f5 Mon Sep 17 00:00:00 2001 From: Gordon Shotwell Date: Tue, 1 Aug 2023 12:21:33 -0300 Subject: [PATCH] debugging --- .github/workflows/deploy-gallery-apps.yaml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/deploy-gallery-apps.yaml b/.github/workflows/deploy-gallery-apps.yaml index 5aeb285da..8a412cbc5 100644 --- a/.github/workflows/deploy-gallery-apps.yaml +++ b/.github/workflows/deploy-gallery-apps.yaml @@ -36,8 +36,9 @@ jobs: } # Loop through the contents of the examples folder - for app_path in examples/*; do + for app_path in $GITHUB_WORKSPACE/examples/*; do if [ -d "$app_path" ]; then + echo "App Path: $app_path" app_name=$(basename "$app_path") deploy_shiny_app "$app_name" fi