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