fixed .drone.yml
continuous-integration/drone/push Build is passing Details

This commit is contained in:
Samuel Philipp 2020-07-04 07:45:34 +02:00
parent 8ac2d4989b
commit 0da4cce6fc
1 changed files with 16 additions and 16 deletions

View File

@ -26,19 +26,19 @@ steps:
event: event:
- push - push
- name: deploy-master - name: deploy-master
image: alpine image: alpine
environment: environment:
FTP_HOST: FTP_HOST:
from_secret: FTP_HOST from_secret: FTP_HOST
FTP_USERNAME: FTP_USERNAME:
from_secret: FTP_USERNAME from_secret: FTP_USERNAME
FTP_PASSWORD: FTP_PASSWORD:
from_secret: FTP_PASSWORD from_secret: FTP_PASSWORD
commands: commands:
- which lftp || ( apk --update add lftp ) - which lftp || ( apk --update add lftp )
- lftp -e "set ftp:ssl-force true; set ssl:verify-certificate no; mirror -R ./dist/ sp-codes.de/; bye" -u $FTP_USERNAME,$FTP_PASSWORD $FTP_HOST - lftp -e "set ftp:ssl-force true; set ssl:verify-certificate no; mirror -R ./dist/ sp-codes.de/; bye" -u $FTP_USERNAME,$FTP_PASSWORD $FTP_HOST
when: when:
branch: branch:
- master - master
event: event:
- push - push