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 +36
-0
lines changed Expand file tree Collapse file tree 3 files changed +36
-0
lines changed Original file line number Diff line number Diff line change 3933
3933
"datasourceTemplate" : " github-tags" ,
3934
3934
"extractVersionTemplate" : " ^v(?<version>.+?)$"
3935
3935
},
3936
+ {
3937
+ "fileMatch" : [
3938
+ " ^tools/xq/manifest.yaml$"
3939
+ ],
3940
+ "matchStrings" : [
3941
+ " version: \" ?(?<currentValue>.*?)\" ?\\ n"
3942
+ ],
3943
+ "depNameTemplate" : " sibprogrammer/xq" ,
3944
+ "datasourceTemplate" : " github-releases" ,
3945
+ "extractVersionTemplate" : " ^v(?<version>.+?)$"
3946
+ },
3936
3947
{
3937
3948
"fileMatch" : [
3938
3949
" ^tools/yasu/manifest.yaml$"
Original file line number Diff line number Diff line change
1
+ #syntax=docker/dockerfile:1.4.3
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
+ curl --silent --location --fail "https://github.com/sibprogrammer/xq/releases/download/v${version}/xq_${version}_linux_${alt_arch}.tar.gz" \
10
+ | tar --extract --gzip --directory="${prefix}${target}/bin/" --no-same-owner \
11
+ xq
12
+ EOF
Original file line number Diff line number Diff line change
1
+ name : xq
2
+ version : " 1.1.1"
3
+ check : ${binary} --version | cut -d' ' -f3
4
+ tags :
5
+ - category/development
6
+ - type/cli
7
+ - lang/go
8
+ homepage : https://github.com/sibprogrammer/xq
9
+ description : Command-line XML and HTML beautifier and content extractor
10
+ renovate :
11
+ datasource : github-releases
12
+ package : sibprogrammer/xq
13
+ extractVersion : ^v(?<version>.+?)$
You can’t perform that action at this time.
0 commit comments