From 3dadf1e8b35e58a29124fe6cbc1f839000aa005e Mon Sep 17 00:00:00 2001 From: Antigravity Date: Wed, 20 May 2026 19:38:44 +0000 Subject: [PATCH] fix(ci): install docker-cli and dependencies inside runner for deploy step --- .gitea/workflows/ci.yaml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/.gitea/workflows/ci.yaml b/.gitea/workflows/ci.yaml index 2100c98..ea6a668 100644 --- a/.gitea/workflows/ci.yaml +++ b/.gitea/workflows/ci.yaml @@ -203,6 +203,12 @@ jobs: upsert TELEGRAM_BOT_TOKEN "$TELEGRAM_BOT_TOKEN" upsert TELEGRAM_CHAT_ID "$TELEGRAM_CHAT_ID" + - name: Install docker and compose inside runner + run: | + if command -v apk >/dev/null 2>&1; then + apk add --no-cache docker-cli docker-cli-compose jq curl git || true + fi + - name: Deploy on 192.168.1.190 env: ARTIFACT_TGZ: ${{ github.workspace }}/web-artifact.tgz