contents of rezept-schneider.de https://rezept-schneider.de
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

24 lines
560 B

  1. kind: pipeline
  2. type: docker
  3. name: default
  4. steps:
  5. - name: submodules
  6. image: alpine/git
  7. commands:
  8. - git submodule update --recursive --remote
  9. - name: build
  10. image: cbrgm/drone-hugo:latest
  11. validate: true
  12. output: public/drone-generated
  13. url: https://rezept-schneider.de
  14. - name: deploy
  15. image: drillster/drone-rsync
  16. hosts: [ "rezept-schneider.de" ]
  17. target: /var/www/html/rezeptschneider/public/
  18. source: public/drone-generated/
  19. user: deploy-rezept
  20. secrets: [ rsync_key ]