updated .drone.yml and renovate.json
All checks were successful
continuous-integration/drone/push Build is passing
All checks were successful
continuous-integration/drone/push Build is passing
This commit is contained in:
parent
7480106bca
commit
562b0e644a
2 changed files with 5 additions and 8 deletions
10
.drone.yml
10
.drone.yml
|
@ -2,17 +2,13 @@ kind: pipeline
|
||||||
type: docker
|
type: docker
|
||||||
name: default
|
name: default
|
||||||
|
|
||||||
platform:
|
|
||||||
os: linux
|
|
||||||
arch: arm
|
|
||||||
|
|
||||||
steps:
|
steps:
|
||||||
- name: build
|
- name: build
|
||||||
image: node
|
image: node
|
||||||
commands:
|
commands:
|
||||||
- npm install
|
- npm install
|
||||||
- npm run build
|
- npm run build
|
||||||
- name: deploy-develop
|
- name: deploy-dev
|
||||||
image: alpine
|
image: alpine
|
||||||
environment:
|
environment:
|
||||||
FTP_HOST:
|
FTP_HOST:
|
||||||
|
@ -29,7 +25,7 @@ steps:
|
||||||
- develop
|
- develop
|
||||||
event:
|
event:
|
||||||
- push
|
- push
|
||||||
- name: deploy-master
|
- name: deploy
|
||||||
image: alpine
|
image: alpine
|
||||||
environment:
|
environment:
|
||||||
FTP_HOST:
|
FTP_HOST:
|
||||||
|
@ -43,6 +39,6 @@ steps:
|
||||||
- lftp -e "set ftp:ssl-force true; set ssl:verify-certificate no; mirror -R ./dist/ samuel-philipp.de/; bye" -u $FTP_USERNAME,$FTP_PASSWORD $FTP_HOST
|
- lftp -e "set ftp:ssl-force true; set ssl:verify-certificate no; mirror -R ./dist/ samuel-philipp.de/; bye" -u $FTP_USERNAME,$FTP_PASSWORD $FTP_HOST
|
||||||
when:
|
when:
|
||||||
branch:
|
branch:
|
||||||
- master
|
- main
|
||||||
event:
|
event:
|
||||||
- push
|
- push
|
||||||
|
|
|
@ -5,5 +5,6 @@
|
||||||
"baseBranches": [
|
"baseBranches": [
|
||||||
"develop"
|
"develop"
|
||||||
],
|
],
|
||||||
"rangeStrategy": "bump"
|
"rangeStrategy": "bump",
|
||||||
|
"rebaseWhen": "behind-base-branch"
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue