mkdir
ci/woodpecker/push/woodpecker Pipeline failed Details

This commit is contained in:
sneakers-the-rat 2022-11-18 01:31:14 -08:00
parent 74395e6dc4
commit 3688e6a697
1 changed files with 2 additions and 1 deletions

View File

@ -4,9 +4,10 @@ pipeline:
privileged: true privileged: true
commands: commands:
- chmod -R a+w . - chmod -R a+w .
- mkdir /var/www/pages/index - "[[ -d dir ]] || mkdir /var/www/pages/index"
- chmod -R a+w /var/www/pages/index - chmod -R a+w /var/www/pages/index
- bundle install - bundle install
- bundle exec jekyll build -d /var/www/pages/index - bundle exec jekyll build -d /var/www/pages/index
- chown -R woodpecker:woodpecker /var/www/pages/index
volumes: volumes:
- /var/www/pages:/var/www/pages - /var/www/pages:/var/www/pages