updated build using gulpjs
Todas as verificações foram bem sucedidas
continuous-integration/drone/push Build is passing

removed xing and linkedin
added mastodon
Esse commit está contido em:
Samuel Philipp 2019-12-19 22:52:21 +01:00
commit bb8b7ee359
18 arquivos alterados com 8655 adições e 482 exclusões

22
.drone.yml Arquivo normal
Ver arquivo

@ -0,0 +1,22 @@
kind: pipeline
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 "mirror -R ./dist/ sp-magic.de/; bye" -u $FTP_USERNAME,$FTP_PASSWORD $FTP_HOST