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 +41
-0
lines changed Expand file tree Collapse file tree 3 files changed +41
-0
lines changed Original file line number Diff line number Diff line change 2618
2618
"datasourceTemplate" : " github-releases" ,
2619
2619
"extractVersionTemplate" : " ^v(?<version>.+?)$"
2620
2620
},
2621
+ {
2622
+ "fileMatch" : [
2623
+ " ^tools/ksort/manifest.yaml$"
2624
+ ],
2625
+ "matchStrings" : [
2626
+ " version: \" ?(?<currentValue>.*?)\" ?\\ n"
2627
+ ],
2628
+ "depNameTemplate" : " superbrothers/ksort" ,
2629
+ "datasourceTemplate" : " github-releases" ,
2630
+ "extractVersionTemplate" : " ^v(?<version>.+?)$"
2631
+ },
2621
2632
{
2622
2633
"fileMatch" : [
2623
2634
" ^tools/ktop/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/superbrothers/ksort/releases/download/v${version}/ksort-linux-${alt_arch}.zip"
10
+ filename="$(basename "${url}")"
11
+ curl --silent --location --fail --remote-name "${url}"
12
+ unzip -q -o -d /tmp "${filename}"
13
+ mv /tmp/ksort "${prefix}${target}/bin/"
14
+ EOF
Original file line number Diff line number Diff line change
1
+ name : ksort
2
+ version : " 0.4.4"
3
+ check : " " # Version field empty
4
+ platforms :
5
+ - linux/amd64
6
+ - linux/arm64
7
+ tags :
8
+ - category/operations
9
+ - lang/go
10
+ - type/cli
11
+ homepage : https://github.com/superbrothers/ksort
12
+ description : Sort manfest files in a proper order by Kind
13
+ renovate :
14
+ datasource : github-releases
15
+ package : superbrothers/ksort
16
+ extractVersion : ^v(?<version>.+?)$
You can’t perform that action at this time.
0 commit comments