diff --git a/.woodpecker.yml b/.woodpecker.yml index 758f8cb..060845e 100644 --- a/.woodpecker.yml +++ b/.woodpecker.yml @@ -1,9 +1,20 @@ pipeline: - build: + build-stable: image: archlinux commands: - pacman -Syu --noconfirm hugo git - hugo --destination /woodpecker/build/ --minify --cleanDestinationDir + when: + branch: [ main ] + + build-dev: + image: archlinux + commands: + - pacman -Syu --noconfirm hugo git + - hugo --destination /woodpecker/build/ --baseURL "https://dev.vrifox.cc/" --cleanDestinationDir + when: + branch: + exclude: [ main ] upload-stable: image: archlinux