From 1efdc50eed6f494b72e274f2fefada455f068093 Mon Sep 17 00:00:00 2001 From: vrifox Date: Wed, 29 Mar 2023 21:51:17 +0200 Subject: [PATCH] [CI/CD] pacman non-interactive --- .woodpecker.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.woodpecker.yml b/.woodpecker.yml index b490119..fd200c9 100644 --- a/.woodpecker.yml +++ b/.woodpecker.yml @@ -2,7 +2,7 @@ pipeline: build: image: archlinux commands: - - pacman -Syu hugo + - pacman -Syu --noconfirm hugo - hugo --destination /woodpecker/build/vrifox.cc/ --minify --cleanDestinationDir prepare-ssh: @@ -16,7 +16,7 @@ pipeline: upload: image: archlinux commands: - - pacman -Syu openssh rsync + - pacman -Syu --noconfirm openssh rsync - rsync -rv -e "ssh -p $SSH-PORT -i ~/.ssh/id_ed25519" /woodpecker/build/ woodpecker@$SSH-HOST:/home/woodpecker/build/vrifox.cc/ --checksum secrets: [ ssh-port, ssh-host ]