fix(deploy): use apt-get for Debian golang:latest image
ci / test (push) Successful in 45s

golang:latest is Debian-based, not Alpine. Replace apk package manager
commands with apt-get for both orchestrator and worker deployments.
This commit is contained in:
Story Crater Bot
2026-08-22 06:09:15 -07:00
parent ac382af545
commit bd5ec944c7
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -18,7 +18,7 @@ spec:
command: ["/bin/sh", "-c"] command: ["/bin/sh", "-c"]
args: args:
- | - |
apk add --no-cache git apt-get update && apt-get install -y --no-install-recommends git
git clone https://forgejo.riotpiao.com/rock/poimen-workflows.git /app git clone https://forgejo.riotpiao.com/rock/poimen-workflows.git /app
cd /app cd /app
go mod download go mod download
+1 -1
View File
@@ -20,7 +20,7 @@ spec:
command: ["/bin/sh", "-c"] command: ["/bin/sh", "-c"]
args: args:
- | - |
apk add --no-cache git apt-get update && apt-get install -y --no-install-recommends git
git clone https://forgejo.riotpiao.com/rock/poimen-workflows.git /app git clone https://forgejo.riotpiao.com/rock/poimen-workflows.git /app
cd /app cd /app
go mod download go mod download