jon-e.net/.woodpecker.yml

14 lines
405 B
YAML
Raw Normal View History

2022-11-18 08:04:07 +00:00
pipeline:
build:
image: jekyll/jekyll
2022-11-18 08:56:56 +00:00
privileged: true
2022-11-18 08:04:07 +00:00
commands:
2022-11-18 09:04:32 +00:00
- chmod -R a+w .
2022-11-18 09:31:27 +00:00
- "[[ -d /var/www/pages/index ]] || mkdir /var/www/pages/index"
2022-11-18 09:05:23 +00:00
- chmod -R a+w /var/www/pages/index
2022-11-18 09:04:32 +00:00
- bundle install
2022-11-18 08:04:07 +00:00
- bundle exec jekyll build -d /var/www/pages/index
2022-11-18 09:31:14 +00:00
- chown -R woodpecker:woodpecker /var/www/pages/index
2022-11-18 08:04:07 +00:00
volumes:
- /var/www/pages:/var/www/pages