From 321d744922eafb895db1b83cc824280d0b6e4616 Mon Sep 17 00:00:00 2001 From: "Rodrigo Rodriguez (Pragmatismo)" Date: Sun, 15 Mar 2026 16:16:38 -0300 Subject: [PATCH] CI: fix botui symlink path --- .forgejo/workflows/botserver.yaml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/.forgejo/workflows/botserver.yaml b/.forgejo/workflows/botserver.yaml index 62615d29..266b3ccf 100644 --- a/.forgejo/workflows/botserver.yaml +++ b/.forgejo/workflows/botserver.yaml @@ -29,8 +29,9 @@ jobs: # Clone botserver separately git clone --depth 1 --branch main https://alm.pragmatismo.com.br/GeneralBots/BotServer.git botserver - # Create symlink to botui in botserver directory - ln -sf ../botui botserver/botui + # Create symlink to botui in botserver directory (expects ../../../../botui from src/designer/canvas_api/) + cd botserver + ln -sf ../botui botui # Remove all members except botserver and botlib from workspace sed -i '/"botapp",/d' Cargo.toml