[CI/CD] pacman non-interactive
Some checks failed
ci/woodpecker/push/woodpecker Pipeline failed

This commit is contained in:
Vri 🌈 2023-03-29 21:51:17 +02:00
parent ae0a302298
commit 1efdc50eed
Signed by: vrifox
GPG key ID: D40098E5B60B2197

View file

@ -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 ]