Compare commits

..

7 commits

Author SHA1 Message Date
f3793cb969 Merge pull request 'develop' (#13) from develop into master
All checks were successful
continuous-integration/drone/push Build is passing
Reviewed-on: #13
2020-07-15 05:55:56 +00:00
75a19bb2a5 Merge branch 'master' into develop
All checks were successful
continuous-integration/drone/pr Build is passing
continuous-integration/drone/push Build is passing
2020-07-15 05:23:22 +00:00
1146f2042a fixed .drone.yml
All checks were successful
continuous-integration/drone/push Build is passing
continuous-integration/drone/pr Build is passing
2020-07-05 12:19:00 +02:00
0da4cce6fc fixed .drone.yml
All checks were successful
continuous-integration/drone/push Build is passing
2020-07-04 07:45:34 +02:00
8ac2d4989b fixed .drone.yml 2020-07-04 07:42:21 +02:00
1d6e3aea9d Merge remote-tracking branch 'origin/develop' into develop 2020-07-04 07:40:35 +02:00
e274a5a992 updated .drone.yml 2020-07-04 07:40:30 +02:00

View file

@ -1,6 +1,10 @@
kind: pipeline
type: docker
name: build-develop
name: default
platform:
os: linux
arch: arm
steps:
- name: build
@ -8,7 +12,7 @@ steps:
commands:
- npm install
- npm run build
- name: deploy
- name: deploy-develop
image: alpine
environment:
FTP_HOST:
@ -21,25 +25,11 @@ steps:
- which lftp || ( apk --update add lftp )
- lftp -e "set ftp:ssl-force true; set ssl:verify-certificate no; mirror -R ./dist/ dev.sp-codes.de/; bye" -u $FTP_USERNAME,$FTP_PASSWORD $FTP_HOST
when:
event:
- push
trigger:
branch:
- develop
---
kind: pipeline
type: docker
name: build-master
steps:
- name: build
image: node
commands:
- npm install
- npm run build
- name: deploy
event:
- push
- name: deploy-master
image: alpine
environment:
FTP_HOST:
@ -52,9 +42,7 @@ steps:
- 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
when:
event:
- push
trigger:
branch:
- master
event:
- push