From cac045d98acec0ac98bdf2d2267acd2666cf3900 Mon Sep 17 00:00:00 2001 From: "Rodrigo Rodriguez (Pragmatismo)" Date: Fri, 20 Mar 2026 19:15:03 -0300 Subject: [PATCH] fix: Clone botserver to temp dir then replace submodule to avoid workspace conflict --- .forgejo/workflows/botserver.yaml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.forgejo/workflows/botserver.yaml b/.forgejo/workflows/botserver.yaml index 86d4f3c5..a7580658 100644 --- a/.forgejo/workflows/botserver.yaml +++ b/.forgejo/workflows/botserver.yaml @@ -23,7 +23,8 @@ jobs: git clone --depth 1 --branch main https://alm.pragmatismo.com.br/GeneralBots/gb.git workspace cd workspace git submodule update --init --depth 1 botlib - git clone --depth 1 --branch main https://alm.pragmatismo.com.br/GeneralBots/BotServer.git botserver + git clone --depth 1 --branch main https://alm.pragmatismo.com.br/GeneralBots/BotServer.git botserver-ci + rm -rf botserver && mv botserver-ci botserver sed -i '/"botapp",/d' Cargo.toml sed -i '/"botdevice",/d' Cargo.toml sed -i '/"bottest",/d' Cargo.toml