updated .drone.yml
continuous-integration/drone/push Build is passing Details

added renovate.json
This commit is contained in:
Samuel Philipp 2020-11-29 12:31:58 +01:00
parent 4b089f4d56
commit 23629a3520
3 changed files with 60 additions and 1 deletions

View File

@ -18,6 +18,39 @@ steps:
password:
from_secret: PASSWORD
trigger:
branch:
- master
event:
- push
---
kind: pipeline
type: docker
name: linux-arm64
platform:
os: linux
arch: arm64
steps:
- name: docker
image: plugins/docker
settings:
auto_tag: true
auto_tag_suffix: linux-arm64
repo: samuelph/connectivity-check
username:
from_secret: USERNAME
password:
from_secret: PASSWORD
trigger:
branch:
- master
event:
- push
---
kind: pipeline
type: docker
@ -39,11 +72,21 @@ steps:
password:
from_secret: PASSWORD
trigger:
branch:
- master
event:
- push
---
kind: pipeline
type: docker
name: manifest
platform:
os: linux
arch: arm64
steps:
- name: publish
image: plugins/manifest
@ -62,4 +105,11 @@ steps:
depends_on:
- linux-amd64
- linux-arm64
- linux-arm
trigger:
branch:
- master
event:
- push

View File

@ -1,3 +1,3 @@
FROM nginx:alpine
FROM nginx:1.19.4-alpine
COPY nginx.conf /etc/nginx/nginx.conf

9
renovate.json Normal file
View File

@ -0,0 +1,9 @@
{
"assignees": [
"samuel-p"
],
"baseBranches": [
"master"
],
"rangeStrategy": "bump"
}