From 43e06fbd4e3be9c86e64803903af9e51591c6608 Mon Sep 17 00:00:00 2001 From: Story Crater Bot <19826264+Riotpiaole@users.noreply.github.com> Date: Sat, 22 Aug 2026 05:57:44 -0700 Subject: [PATCH] fix(orchestrator): clone correct repo and fix paths - Clone from poimen-workflows.git (correct repo) - Remove unnecessary gcc and musl-dev (not needed for running Go binaries) - Fix cd path from /app/workflows to /app --- k8s/orchestrator-job.yaml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/k8s/orchestrator-job.yaml b/k8s/orchestrator-job.yaml index 1fa968f..7881493 100644 --- a/k8s/orchestrator-job.yaml +++ b/k8s/orchestrator-job.yaml @@ -18,9 +18,9 @@ spec: command: ["/bin/sh", "-c"] args: - | - apk add --no-cache git gcc musl-dev - git clone https://forgejo.riotpiao.com/rock/poimen.git /app - cd /app/workflows + apk add --no-cache git + git clone https://forgejo.riotpiao.com/rock/poimen-workflows.git /app + cd /app go mod download go run ./cmd/starter \ --repo https://forgejo.riotpiao.com/rock/poimen \