From c7db12fcd75f7287dccc9ba17632adbff1ee3586 Mon Sep 17 00:00:00 2001 From: Darrel Pol Date: Tue, 10 Sep 2024 23:16:54 -0500 Subject: [PATCH] adding loractl --- .github/workflows/on_merge_to_master.yaml | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/.github/workflows/on_merge_to_master.yaml b/.github/workflows/on_merge_to_master.yaml index 2931a698e..3f26ed08a 100644 --- a/.github/workflows/on_merge_to_master.yaml +++ b/.github/workflows/on_merge_to_master.yaml @@ -40,14 +40,17 @@ jobs: # Navigate to the extensions folder and clone repos cd ../extensions - if [ ! -d "sd-webui-deforum/.git" ]; then - git clone https://github.com/deforum-art/sd-webui-deforum + if [ ! -d "sd-webui-loractl/.git" ]; then + git clone https://github.com/cheald/sd-webui-loractl.git fi if [ ! -d "sd-webui-controlnet/.git" ]; then git clone https://github.com/Mikubill/sd-webui-controlnet fi - + + if [ ! -d "sd-webui-deforum/.git" ]; then + git clone https://github.com/deforum-art/sd-webui-deforum + fi # Return to the main project directory cd ..