added woodpecker build
All checks were successful
Jenkins
Ellpeck/Web/pipeline/head This commit looks good
ci/woodpecker/manual/main Pipeline was successful

This commit is contained in:
Ell 2023-07-02 19:14:01 +02:00
parent 29057b7308
commit d4d53d5b75

15
.woodpecker/main.yml Normal file
View file

@ -0,0 +1,15 @@
steps:
build:
image: ruby:latest
commands:
- cd main && bundle && bundle exec jekyll build
deploy:
image: debian:latest
when:
- event: push
branch: master
commands:
- rm -rf /var/www/ellpeck/*
- cp -r main/_site/. /var/www/ellpeck
volumes:
- /var/www/ellpeck:/var/www/ellpeck