2
0
Files
homer-assets/.drone.yml
Udo Waechter 455f127943
Some checks failed
continuous-integration/drone Build is failing
rsync debug and exclude .git
2025-12-09 20:30:07 +01:00

30 lines
594 B
YAML

kind: pipeline
name: deploy-homer
type: docker
platform:
os: linux
arch: arm64
trigger:
branch:
- main
steps:
- name: dns-lookup-and-ping
image: alpine:latest
commands:
- nslookup homer.chaos
- ping -c 3 homer.chaos
- name: deploy
image: drillster/drone-rsync:latest
settings:
hosts: ["homer.chaos"]
source: ./
args: -vvv --progress --delete-excluded
exclude: [ ".git*" ]
log_level: debug
target: /home/podman/.local/share/containers/storage/volumes/homer-assets/_data/
user: podman
key:
from_secret: ssh
command_timeout: 2m