From c2a86506a47a63f62835a6c5536f8266473baba4 Mon Sep 17 00:00:00 2001 From: Vlad Marchuk Date: Thu, 14 Nov 2024 13:19:03 +0300 Subject: [PATCH] fix: TGWUI path fixes --- .github/workflows/build-engine.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/build-engine.yml b/.github/workflows/build-engine.yml index 4f30e70..c415e91 100644 --- a/.github/workflows/build-engine.yml +++ b/.github/workflows/build-engine.yml @@ -43,8 +43,8 @@ jobs: - name: Prepare variables run: | if [ "$SOLUTION" == "text-generation-webui" ]; then - DOCKERFILE="./Text\ Generation\ WebUI/Dockerfile" - DOCKERFILE_CONTEXT="./Text\ Generation\ WebUI/" + DOCKERFILE="./Text Generation WebUI/Dockerfile" + DOCKERFILE_CONTEXT="./Text Generation WebUI/" SUBMODULE_PATH="Text\ Generation\ WebUI/text-generation-webui" elif [ "$SOLUTION" == "comfyui" ]; then DOCKERFILE="./ComfyUI/Dockerfile" @@ -72,7 +72,7 @@ jobs: - name: Create .env file run: | - cd $DOCKERFILE_CONTEXT + cd "$DOCKERFILE_CONTEXT" if [ "$TARGET" == "develop" ]; then echo "${{ secrets.DEVELOP_SOLUTION_ENV_BASE64 }}" | base64 --decode > .env