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.

22 lines
472 B

4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
  1. pipeline:
  2. build:
  3. image: plugins/hugo
  4. validate: false
  5. url: https://yigit.run
  6. compress:
  7. image: alpine:latest
  8. commands:
  9. - apk --no-cache update
  10. - apk add make
  11. - make -C public/ -f ../Makefile
  12. deploy:
  13. image: drillster/drone-rsync
  14. hosts: [ "192.168.1.5" ]
  15. port: 3471
  16. target: /var/www/html/yigit.run
  17. source: public/*
  18. delete: true
  19. key:
  20. from_secret: rsync_key
  21. user: root
  22. secrets: [ rsync_key ]