From 867ee145b11625110ac6626ed32278fc2f976600 Mon Sep 17 00:00:00 2001 From: devops Date: Tue, 23 Jun 2026 11:18:54 +0000 Subject: [PATCH] fix deploy: add apk SSH install, use docker gateway IP --- .gitea/workflows/deploy.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.gitea/workflows/deploy.yml b/.gitea/workflows/deploy.yml index e0e1004..52ae562 100644 --- a/.gitea/workflows/deploy.yml +++ b/.gitea/workflows/deploy.yml @@ -7,7 +7,8 @@ jobs: deploy: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v4 + - name: Install SSH client + run: apk add --no-cache openssh-client - name: Setup SSH key env: SSH_KEY: ${{ secrets.DEPLOY_KEY }}