Deligraph-V3/.drone.yml
Antoine M bd6f938f71
Some checks failed
continuous-integration/drone/push Build is failing
test cicd
2024-09-24 16:38:15 +02:00

27 lines
801 B
YAML

kind: pipeline
type: docker
name: default
steps:
- name: test
image: alpine
commands:
- pwd
- ls
- name: Deploy to FTP server
image: cschlosser/drone-ftps
environment:
FTP_USERNAME:
from_secret: ftp_username
FTP_PASSWORD:
from_secret: ftp_password
PLUGIN_SECURE: false
PLUGIN_VERIFY: false
PLUGIN_HOSTNAME: sftp://test.deligraph.com
PLUGIN_SRC_DIR: /assets
PLUGIN_DEST_DIR: /test
PLUGIN_AUTO_CONFIRM: true
PLUGIN_DEBUG: true
PLUGIN_ONLY_NEWER: true