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
|
name: manifest
|
||||||
|
|
||||||
steps:
|
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
|
image: plugins/manifest
|
||||||
settings:
|
settings:
|
||||||
ignore_missing: true
|
ignore_missing: true
|
||||||
|
@ -106,9 +120,6 @@ steps:
|
||||||
- linux/amd64
|
- linux/amd64
|
||||||
- linux/arm64
|
- linux/arm64
|
||||||
- linux/arm
|
- linux/arm
|
||||||
default_tags:
|
|
||||||
- "v0.17.0"
|
|
||||||
- "latest"
|
|
||||||
username:
|
username:
|
||||||
from_secret: USERNAME
|
from_secret: USERNAME
|
||||||
password:
|
password:
|
||||||
|
|
|
@ -14,8 +14,8 @@
|
||||||
"^.drone.yml$"
|
"^.drone.yml$"
|
||||||
],
|
],
|
||||||
"matchStrings": [
|
"matchStrings": [
|
||||||
"\\s*ENV\\s*SEARX_VERSION=\"(?<currentValue>.*?)\"\\s*",
|
"\\s+ENV\\s*SEARX_VERSION=\"(?<currentValue>.*?)\"\\s+",
|
||||||
"\\s*default_tags:\\s*-\\s*\"(?<currentValue>.*?)\"\\s*"
|
"\\s+target:\\s*spcodes\\/searx:(?<currentValue>.*?)\\s+"
|
||||||
],
|
],
|
||||||
"versioningTemplate": "loose",
|
"versioningTemplate": "loose",
|
||||||
"depNameTemplate": "searx/searx",
|
"depNameTemplate": "searx/searx",
|
||||||
|
@ -26,7 +26,7 @@
|
||||||
"^Dockerfile$"
|
"^Dockerfile$"
|
||||||
],
|
],
|
||||||
"matchStrings": [
|
"matchStrings": [
|
||||||
"\\s*(?<depName>[a-z0-9\\-]+?)=\"(?<currentValue>.*?)\"\\s*"
|
"\\s+(?<depName>[a-z0-9\\-]+?)=\"(?<currentValue>.*?)\"\\s+"
|
||||||
],
|
],
|
||||||
"lookupNameTemplate": "alpine_3_12/{{{depName}}}",
|
"lookupNameTemplate": "alpine_3_12/{{{depName}}}",
|
||||||
"versioningTemplate": "loose",
|
"versioningTemplate": "loose",
|
||||||
|
|
Reference in a new issue