added plausible
All checks were successful
continuous-integration/drone/push Build is passing
continuous-integration/drone/pr Build is passing

added matrix profile
updated footer
This commit is contained in:
Samuel Philipp 2020-08-02 19:34:46 +02:00
parent b01b32f742
commit 32d0b4b990
5 changed files with 52 additions and 14 deletions

View file

@ -12,7 +12,24 @@ steps:
commands:
- npm install
- npm run build
- name: deploy
- name: deploy-develop
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/ dev.sp-magic.de/; bye" -u $FTP_USERNAME,$FTP_PASSWORD $FTP_HOST
when:
branch:
- develop
event:
- push
- name: deploy-master
image: alpine
environment:
FTP_HOST: