samuel-p
187b227355
All checks were successful
continuous-integration/drone/push Build is passing
updated legal links updated .drone.yml
27 lines
625 B
YAML
27 lines
625 B
YAML
kind: pipeline
|
|
type: docker
|
|
name: default
|
|
|
|
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
|