Delete '.gitlab-ci.yml'
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
Samuel Philipp 2019-11-06 23:08:04 +00:00
parent 2b7b2cd7d7
commit a7ebd31cd5

View file

@ -1,29 +0,0 @@
stages:
- build
- deploy
build:
image: node
stage: build
dependencies: []
before_script:
- rm package-lock.json
- npm install
script:
- npm run build
cache:
paths:
- node_modules/
artifacts:
paths:
- dist/
deploy:
image: alpine
stage: deploy
dependencies:
- build
before_script:
- which lftp || ( apk --update add lftp )
script:
- lftp -e "mirror -R ./dist/ samuel-philipp.de/; bye" -u $FTP_USERNAME,$FTP_PASSWORD $FTP_HOST