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