fix(ci): install docker-cli and dependencies inside runner for deploy step
Some checks failed
CI / Lint, Test & Build (push) Failing after 12s
CI / Deploy production (on server) (push) Failing after 4m1s

This commit is contained in:
Antigravity
2026-05-20 19:38:44 +00:00
parent b4aedbcc38
commit 3dadf1e8b3

View File

@@ -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