This repository was archived by the owner on Oct 3, 2023. It is now read-only.
File tree Expand file tree Collapse file tree 3 files changed +44
-0
lines changed Expand file tree Collapse file tree 3 files changed +44
-0
lines changed Original file line number Diff line number Diff line change 2216
2216
"datasourceTemplate" : " github-releases" ,
2217
2217
"extractVersionTemplate" : " ^v(?<version>.+?)$"
2218
2218
},
2219
+ {
2220
+ "fileMatch" : [
2221
+ " ^tools/jless/manifest.yaml$"
2222
+ ],
2223
+ "matchStrings" : [
2224
+ " version: \" ?(?<currentValue>.*?)\" ?\\ n"
2225
+ ],
2226
+ "depNameTemplate" : " PaulJuliusMartinez/jless" ,
2227
+ "datasourceTemplate" : " github-releases" ,
2228
+ "extractVersionTemplate" : " ^v(?<version>.+?)$"
2229
+ },
2219
2230
{
2220
2231
"fileMatch" : [
2221
2232
" ^tools/jp/manifest.yaml$"
Original file line number Diff line number Diff line change
1
+ #syntax=docker/dockerfile:1.5.2
2
+
3
+ ARG ref=main
4
+
5
+ FROM ghcr.io/nicholasdille/docker-setup/base:${ref} AS prepare
6
+ ARG name
7
+ ARG version
8
+ RUN <<EOF
9
+ url="https://github.com/PaulJuliusMartinez/jless/releases/download/v${version}/jless-v${version}-x86_64-unknown-linux-gnu.zip"
10
+ filename="$(basename "${url}")"
11
+ curl --silent --location --fail --remote-name "${url}"
12
+ unzip -q -o -d "${prefix}${target}/bin" "${filename}"
13
+ EOF
Original file line number Diff line number Diff line change
1
+ name : jless
2
+ version : " 0.8.0"
3
+ check : ${binary} --version | cut -d' ' -f2
4
+ platforms :
5
+ - linux/amd64
6
+ # Requires:
7
+ # - libxcb1
8
+ # - libxcb-render0
9
+ # - libxcb-shape0
10
+ # - libxcb-xfixes0
11
+ tags :
12
+ - category/development
13
+ - lang/rust
14
+ - type/cli
15
+ homepage : https://github.com/PaulJuliusMartinez/jless
16
+ description : Command-line JSON viewer designed for reading, exploring, and searching
17
+ renovate :
18
+ datasource : github-releases
19
+ package : PaulJuliusMartinez/jless
20
+ extractVersion : ^v(?<version>.+?)$
You can’t perform that action at this time.
0 commit comments