Skip to content

Commit

Permalink
Update deploy.yml to use build rather than dist (#125)
Browse files Browse the repository at this point in the history
  • Loading branch information
elliotBraem authored Jul 8, 2024
1 parent 6e1704e commit 6230712
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 6230712

Please sign in to comment.