sp-magic.de/.drone.yml
Samuel Philipp c0c65007c9
All checks were successful
continuous-integration/drone/push Build is passing
updated .drone.yml
2020-07-05 12:18:01 +02:00

32 lines
660 B
YAML

kind: pipeline
type: docker
name: default
platform:
os: linux
arch: arm
steps:
- name: build
image: node
commands:
- npm install
- npm run build
- name: deploy
image: alpine
environment:
FTP_HOST:
from_secret: FTP_HOST
FTP_USERNAME:
from_secret: FTP_USERNAME
FTP_PASSWORD:
from_secret: FTP_PASSWORD
commands:
- which lftp || ( apk --update add lftp )
- lftp -e "set ftp:ssl-force true; set ssl:verify-certificate no; mirror -R ./dist/ sp-magic.de/; bye" -u $FTP_USERNAME,$FTP_PASSWORD $FTP_HOST
when:
branch:
- master
event:
- push