30 lines
493 B
YAML
30 lines
493 B
YAML
kind: pipeline
|
|
type: docker
|
|
name: default
|
|
platform:
|
|
os: linux
|
|
arch: arm64
|
|
|
|
|
|
steps:
|
|
- name: build
|
|
image: plugins/hugo
|
|
settings:
|
|
hugo_version: 0.55
|
|
validate: true
|
|
|
|
|
|
# - name: deploy
|
|
# image: appleboy/drone-scp
|
|
# settings:
|
|
# host: "10.0.2.1"
|
|
# target: /mnt/volume1/shares/www/richard-dern.fr/www/
|
|
# source: public/*
|
|
# username:
|
|
# from_secret: ssh_user
|
|
# password:
|
|
# from_secret: ssh_password
|
|
|
|
trigger:
|
|
branch:
|
|
- master |