123456789101112131415161718192021222324252627 |
- pipeline:
- deploy_staging:
- image: appleboy/drone-scp
- host: gitlab.karathan.at
- port: 22
- target: "/var/www/blog-staging"
- source: "*"
- secrets: [ ssh_password, ssh_username ]
- branches: [ staging ]
-
- deploy_staging_config:
- image: appleboy/drone-scp
- host: gitlab.karathan.at
- port: 22
- target: "/var/www/blog-staging/config/config.yml"
- source: "config/config-staging.yml"
- secrets: [ ssh_password, ssh_username ]
- branches: [ staging ]
-
- deploy_staging_meta:
- image: appleboy/drone-scp
- host: gitlab.karathan.at
- port: 22
- target: "/var/www/blog-staging/content/_meta.md"
- source: "content/_meta-staging.md"
- secrets: [ ssh_password, ssh_username ]
- branches: [ staging ]
|