Blog-style website for karathan using the self-made Stellar Theme powered by HTML5Up http://blog.karathan.at

123456789101112131415161718192021222324252627
  1. pipeline:
  2. deploy_staging:
  3. image: appleboy/drone-scp
  4. host: gitlab.karathan.at
  5. port: 22
  6. target: "/var/www/blog-staging"
  7. source: "*"
  8. secrets: [ ssh_password, ssh_username ]
  9. branches: [ staging ]
  10. deploy_staging_config:
  11. image: appleboy/drone-scp
  12. host: gitlab.karathan.at
  13. port: 22
  14. target: "/var/www/blog-staging/config/config.yml"
  15. source: "config/config-staging.yml"
  16. secrets: [ ssh_password, ssh_username ]
  17. branches: [ staging ]
  18. deploy_staging_meta:
  19. image: appleboy/drone-scp
  20. host: gitlab.karathan.at
  21. port: 22
  22. target: "/var/www/blog-staging/content/_meta.md"
  23. source: "content/_meta-staging.md"
  24. secrets: [ ssh_password, ssh_username ]
  25. branches: [ staging ]