kind: pipeline type: docker name: hugo-build steps: - name: build image: klakegg/hugo:latest commands: - hugo --minify --baseURL https://www.eryang.wang/ - name: deploy image: appleboy/drone-scp settings: host: eryang.wang username: ecs-user password: from_secret: ssh_password port: 22 target: /opt/docker/www/www.eryang.wang/ source: public/* trigger: branch: - master event: - push