[CD] specific dev build step
All checks were successful
ci/woodpecker/push/woodpecker Pipeline was successful

This commit is contained in:
Vri 🌈 2023-04-05 23:34:47 +02:00
parent 5981933e13
commit 06bc9d14c9
Signed by: vrifox
GPG key ID: D40098E5B60B2197

View file

@ -1,9 +1,20 @@
pipeline: pipeline:
build: build-stable:
image: archlinux image: archlinux
commands: commands:
- pacman -Syu --noconfirm hugo git - pacman -Syu --noconfirm hugo git
- hugo --destination /woodpecker/build/ --minify --cleanDestinationDir - 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: upload-stable:
image: archlinux image: archlinux