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.

21 lines
457 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
4 years ago
4 years ago
  1. pipeline:
  2. build:
  3. image: plugins/hugo
  4. validate: false
  5. url: https://fr1nge.xyz
  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/fr1nge.xyz
  17. source: public/*
  18. key:
  19. from_secret: rsync_key
  20. user: root
  21. secrets: [ rsync_key ]