cv-site/.drone.yml
Gianmarco Pettinato 459162cd12
Some checks failed
continuous-integration/drone Build is failing
rollback to lftp
2021-12-16 12:42:34 +01:00

25 lines
502 B
YAML

---
kind: pipeline
type: docker
name: deploy
steps:
- name: build-site
image: node:latest
commands:
- npm install
- npm run build
- name: deploy
image: mwienk/docker-lftp
environment:
USERNAME:
from_secret: username
PASSWORD:
from_secret: password
HOST:
from_secret: host
commands:
- "ls"
- lftp -c "open -u $USERNAME,$PASSWORD $HOST; mirror -Rnev ./build ./www --ignore-time --parallel=10 --exclude .htaccess --exclude-glob .git* --exclude .git/"