From 85f77d094634e6744b02bc120fd3eb9587b27d10 Mon Sep 17 00:00:00 2001 From: "Rodrigo Rodriguez (Pragmatismo)" Date: Tue, 17 Mar 2026 16:20:40 -0300 Subject: [PATCH] fix: use lxc file push to deploy botui binary to pragmatismo-system container --- .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 33e08f7..a369fbe 100644 --- a/.forgejo/workflows/botui.yaml +++ b/.forgejo/workflows/botui.yaml @@ -91,8 +91,8 @@ jobs: run: | lxc exec bot:pragmatismo-system -- systemctl stop ui || true - sudo mkdir -p /opt/gbo/bin/system - sudo cp target/release/botui /opt/gbo/bin/system/botui - sudo chmod +x /opt/gbo/bin/system/botui + lxc exec bot:pragmatismo-system -- mkdir -p /opt/gbo/bin/system + lxc file push target/release/botui bot:pragmatismo-system/opt/gbo/bin/system/botui + lxc exec bot:pragmatismo-system -- 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