From f54d8bb27123e48d3f6a6fba36ae00f63451a936 Mon Sep 17 00:00:00 2001 From: Simon Vieille Date: Tue, 26 Jul 2022 08:56:59 +0200 Subject: [PATCH] update ci; add content --- .woodpecker.yml | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/.woodpecker.yml b/.woodpecker.yml index 1aedfd9..ce20f6c 100644 --- a/.woodpecker.yml +++ b/.woodpecker.yml @@ -1,8 +1,6 @@ pipeline: build: - image: plugins/hugo - settings: - output: /tmp/build + image: klakegg/hugo update: image: alpine/git @@ -11,8 +9,9 @@ pipeline: - git switch pages - git config --global user.email ci@gitnet.fr - git config --global user.name CI + - mv public /tmp/ - rm * -fr - - mv /tmp/build/* . + - mv /tmp/public/* . - git add . - git commit -m "Build ${CI_BUILD_NUMBER}"