From f4dea1f1b065a68bc1ecc8a0b8c333b207175f73 Mon Sep 17 00:00:00 2001 From: DevOps Date: Mon, 13 Jul 2026 13:03:47 +0000 Subject: [PATCH] fix: use canina runner with pre-installed SSH --- .gitea/workflows/deploy.yml | 11 +---------- 1 file changed, 1 insertion(+), 10 deletions(-) diff --git a/.gitea/workflows/deploy.yml b/.gitea/workflows/deploy.yml index e207217..9569211 100644 --- a/.gitea/workflows/deploy.yml +++ b/.gitea/workflows/deploy.yml @@ -5,17 +5,8 @@ on: jobs: deploy: - runs-on: ubuntu-latest - defaults: - run: - shell: sh + runs-on: canina steps: - - name: Install SSH - run: | - V=$(cut -d'.' -f1-2 /etc/alpine-release) - echo "http://dl-cdn.alpinelinux.org/alpine/v$V/main" > /etc/apk/repositories - echo "http://dl-cdn.alpinelinux.org/alpine/v$V/community" >> /etc/apk/repositories - apk add --no-cache openssh-client - name: Setup SSH key env: SSH_KEY: ${{ secrets.DEPLOY_KEY }}