From 5c8f53a39e1768a03a8a1188a846af20c0118c75 Mon Sep 17 00:00:00 2001 From: ktyl Date: Tue, 27 Sep 2022 21:28:59 +0100 Subject: [PATCH] use arch image --- .drone.yml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/.drone.yml b/.drone.yml index d46f356..6f1ef2c 100644 --- a/.drone.yml +++ b/.drone.yml @@ -4,12 +4,13 @@ name: deploy steps: - name: submodules - image: alpine/git + image: archlinux commands: + - pacman -Sy --noconfirm git >/dev/null - git submodule update --init --recursive - name: deploy - image: ubuntu + image: archlinux environment: HOST: from_secret: host @@ -23,9 +24,8 @@ steps: commands: # install stuff - - apt-get update -qq > /dev/null - - apt-get install ssh rsync -qq > /dev/null - - apt-get install python3 make -qq > /dev/null + - pacman -Sy --noconfirm > /dev/null + - pacman -S --noconfirm python make git openssh rsync > /dev/null # configure ssh - eval $(ssh-agent -s)