blog/.drone.yml
Mathieu Broillet 0cde0e8823
Some checks failed
continuous-integration/drone/push Build is failing
try plaintext password
2023-06-11 12:24:22 +02:00

27 lines
782 B
YAML

kind: pipeline
type: docker
name: default
steps:
- name: build
image: appleboy/drone-ssh
settings:
host:
- 192.168.10.119
username: root
password: homelab-blog
port: 22
command_timeout: 1m
script:
- apt install hugo -y
- git submodule update --init
- hugo version
# - ln -s /home/hebron/hugo_resources/production resources
- hugo --gc --minify -b https://blog.broillet.ch/
# - name: vps-deploy
# commands:
# - rsync -ah --stats public/ cirrus:/var/www/html/blog/${DRONE_COMMIT_SHA:0:8}
# - ssh cirrus -f "ln -sfn /var/www/html/blog/${DRONE_COMMIT_SHA:0:8} /var/www/html/blog/deployed"
# - ssh cirrus -f "find /var/www/html/blog/ -maxdepth 1 -mtime +1 -type d -exec rm -r {} \;"