samuel-philipp.de/.drone.yml
Samuel Philipp 07cd99c1f8
All checks were successful
continuous-integration/drone/push Build is passing
updated .drone.yml
added renovate.json
updated legal links
2020-07-04 07:53:35 +02:00

28 lines
629 B
YAML

kind: pipeline
type: docker
name: build
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/ samuel-philipp.de/; bye" -u $FTP_USERNAME,$FTP_PASSWORD $FTP_HOST
when:
branch:
- master
event:
- push