From 9c2ba91b55b903a97eaaa612f4ccbf305c7dee2d Mon Sep 17 00:00:00 2001 From: Jef Roosens Date: Mon, 3 May 2021 18:40:47 +0200 Subject: [PATCH] Started CICD pipeline config --- .woodpecker.yml | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 .woodpecker.yml diff --git a/.woodpecker.yml b/.woodpecker.yml new file mode 100644 index 0000000..fe994bd --- /dev/null +++ b/.woodpecker.yml @@ -0,0 +1,13 @@ +pipeline: + build: + image: alpine:3 + commands: + - apk update + - apk add --no-cache hugo + - hugo --minify + + deploy: + image: alpine:3 + commands: + - apk update + - apk add --no-cache rsync