From 0da9839b3afa47a74d078af04c839c3ed1f5906a Mon Sep 17 00:00:00 2001 From: asepharyana Date: Thu, 2 Jul 2026 01:55:21 +0700 Subject: [PATCH] ci: switch to debian:stable-slim for SSH compatibility --- .gitlab-ci.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index f516f07..5b6869a 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -23,11 +23,11 @@ variables: deploy-vps: stage: deploy - image: alpine:latest + image: debian:stable-slim only: - master before_script: - - apk add --no-cache openssh-client git + - apt-get update -qq && apt-get install -y -qq openssh-client git - mkdir -p ~/.ssh - cp "$VPS_SSH_KEY" ~/.ssh/id_rsa - chmod 600 ~/.ssh/id_rsa