From ce5df854dd65160d458787ec86dbb34f1e393c36 Mon Sep 17 00:00:00 2001 From: lostinlight Date: Sat, 22 Jan 2022 16:13:05 +0300 Subject: [PATCH] Fix Woodpecker config (22) --- .woodpecker.yml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/.woodpecker.yml b/.woodpecker.yml index 6fb271d..2e3589b 100644 --- a/.woodpecker.yml +++ b/.woodpecker.yml @@ -1,10 +1,11 @@ pipeline: key_check: - image: alpine + image: debian:testing-slim secrets: [ ssh_key ] commands: - - apk add openssh + - apt-get update + - apt-get -y -qq install --no-install-recommends ssh-client - printf '%s\n' "$${SSH_KEY}" > key - chmod 600 key - wc -c key