From 6230712e7ee7e0efee66162bfeb77c9a7551f429 Mon Sep 17 00:00:00 2001 From: Elliot Braem <16282460+elliotBraem@users.noreply.github.com> Date: Mon, 8 Jul 2024 17:39:54 -0400 Subject: [PATCH] Update deploy.yml to use build rather than dist (#125) --- .github/workflows/deploy.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml index 604e58a..49a8896 100644 --- a/.github/workflows/deploy.yml +++ b/.github/workflows/deploy.yml @@ -99,11 +99,11 @@ jobs: if [ -f "bos.workspace.json" ]; then echo "Found bos.workspace.json" BUILD_COMMAND="bos-workspace ws build -n $BW_BUILD_ENV" - BUILD_PATH="$WORKING_DIRECTORY/dist/apps/$BOS_APP_NAME" + BUILD_PATH="$WORKING_DIRECTORY/build/apps/$BOS_APP_NAME" elif [ -f "bos.config.json" ]; then echo "Found bos.config.json" BUILD_COMMAND="bos-workspace build -n $BW_BUILD_ENV" - BUILD_PATH="$WORKING_DIRECTORY/dist" + BUILD_PATH="$WORKING_DIRECTORY/build" else echo "Neither bos.workspace.json nor bos.config.json found, aborting" exit 1