From 54c317dbbcb0f4e5950b738f9f162a16c5c70586 Mon Sep 17 00:00:00 2001 From: "Rodrigo Rodriguez (Pragmatismo)" Date: Fri, 10 Apr 2026 15:28:39 -0300 Subject: [PATCH] Fix CI: force submodule update with proper YAML indentation --- .forgejo/workflows/botserver.yaml | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/.forgejo/workflows/botserver.yaml b/.forgejo/workflows/botserver.yaml index 5de3683d..a0796361 100644 --- a/.forgejo/workflows/botserver.yaml +++ b/.forgejo/workflows/botserver.yaml @@ -37,15 +37,15 @@ jobs: # Simple pull to get latest changes git -C gb-ws pull origin main - # Initialize/update all workspace member submodules - cd gb-ws - git submodule sync - git submodule update --init --depth 1 botlib botserver botapp botdevice bottest botui - - # Force submodule update to match parent repo - git submodule foreach "git fetch origin main && git checkout origin/main || git checkout main || true" + # Initialize/update all workspace member submodules + cd gb-ws + git submodule sync + git submodule update --init --depth 1 botlib botserver botapp botdevice bottest botui - mkdir -p /home/gbuser/target + # Force submodule update to match parent repo + git submodule foreach "git fetch origin main && git checkout origin/main || git checkout main || true" + + mkdir -p /home/gbuser/target - name: Cache sccache uses: actions/cache@v4