From 1a1de27fd7a0ffe08fcf92f51c89cf0c26c1ea38 Mon Sep 17 00:00:00 2001 From: "Rodrigo Rodriguez (Pragmatismo)" Date: Fri, 6 Feb 2026 12:24:03 -0300 Subject: [PATCH] Fix CI: build release mode with embed-ui feature --- .forgejo/workflows/botui.yaml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.forgejo/workflows/botui.yaml b/.forgejo/workflows/botui.yaml index b93e0c5..325372a 100644 --- a/.forgejo/workflows/botui.yaml +++ b/.forgejo/workflows/botui.yaml @@ -81,8 +81,8 @@ jobs: - name: Build BotUI working-directory: workspace run: | - cargo build -p botui --features embed-ui -j 8 2>&1 | tee /tmp/build.log - ls -lh target/debug/botui + cargo build --release -p botui --features embed-ui -j 8 2>&1 | tee /tmp/build.log + ls -lh target/release/botui sccache --show-stats || true - name: Save build log @@ -96,7 +96,7 @@ jobs: run: | lxc exec bot:pragmatismo-system -- systemctl stop ui || true - sudo cp target/debug/botui /opt/gbo/bin/system/ + sudo cp target/release/botui /opt/gbo/bin/system/ sudo chmod +x /opt/gbo/bin/system/botui lxc exec bot:pragmatismo-system -- systemctl start ui || true# CI trigger: Fri Feb 6 10:57:04 AM -03 2026