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
13116635ea
commit
1be2dd7e7a
2 changed files with 18 additions and 7 deletions
19
.drone.yml
19
.drone.yml
|
@ -96,7 +96,21 @@ type: docker
|
|||
name: manifest
|
||||
|
||||
steps:
|
||||
- name: publish
|
||||
- name: publish-version
|
||||
image: plugins/manifest
|
||||
settings:
|
||||
ignore_missing: true
|
||||
target: spcodes/searx:v0.17.0
|
||||
template: spcodes/searx:OS-ARCH
|
||||
platforms:
|
||||
- linux/amd64
|
||||
- linux/arm64
|
||||
- linux/arm
|
||||
username:
|
||||
from_secret: USERNAME
|
||||
password:
|
||||
from_secret: PASSWORD
|
||||
- name: publish-latest
|
||||
image: plugins/manifest
|
||||
settings:
|
||||
ignore_missing: true
|
||||
|
@ -106,9 +120,6 @@ steps:
|
|||
- linux/amd64
|
||||
- linux/arm64
|
||||
- linux/arm
|
||||
default_tags:
|
||||
- "v0.17.0"
|
||||
- "latest"
|
||||
username:
|
||||
from_secret: USERNAME
|
||||
password:
|
||||
|
|
|
@ -14,8 +14,8 @@
|
|||
"^.drone.yml$"
|
||||
],
|
||||
"matchStrings": [
|
||||
"\\s*ENV\\s*SEARX_VERSION=\"(?<currentValue>.*?)\"\\s*",
|
||||
"\\s*default_tags:\\s*-\\s*\"(?<currentValue>.*?)\"\\s*"
|
||||
"\\s+ENV\\s*SEARX_VERSION=\"(?<currentValue>.*?)\"\\s+",
|
||||
"\\s+target:\\s*spcodes\\/searx:(?<currentValue>.*?)\\s+"
|
||||
],
|
||||
"versioningTemplate": "loose",
|
||||
"depNameTemplate": "searx/searx",
|
||||
|
@ -26,7 +26,7 @@
|
|||
"^Dockerfile$"
|
||||
],
|
||||
"matchStrings": [
|
||||
"\\s*(?<depName>[a-z0-9\\-]+?)=\"(?<currentValue>.*?)\"\\s*"
|
||||
"\\s+(?<depName>[a-z0-9\\-]+?)=\"(?<currentValue>.*?)\"\\s+"
|
||||
],
|
||||
"lookupNameTemplate": "alpine_3_12/{{{depName}}}",
|
||||
"versioningTemplate": "loose",
|
||||
|
|
Reference in a new issue