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 +37
-0
lines changed Expand file tree Collapse file tree 3 files changed +37
-0
lines changed Original file line number Diff line number Diff line change 477
477
"depNameTemplate" : " ckotzbauer/chekr" ,
478
478
"datasourceTemplate" : " github-releases"
479
479
},
480
+ {
481
+ "fileMatch" : [
482
+ " ^tools/chigo/manifest.yaml$"
483
+ ],
484
+ "matchStrings" : [
485
+ " version: \" ?(?<currentValue>.*?)\" ?\\ n"
486
+ ],
487
+ "depNameTemplate" : " UltiRequiem/chigo" ,
488
+ "datasourceTemplate" : " github-releases" ,
489
+ "extractVersionTemplate" : " ^v(?<version>.+?)$"
490
+ },
480
491
{
481
492
"fileMatch" : [
482
493
" ^tools/chisel/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
+ FROM ghcr.io/nicholasdille/docker-setup/base:${ref} AS prepare
5
+
6
+ ARG name
7
+ ARG version
8
+
9
+ RUN <<EOF
10
+ curl --silent --location "https://github.com/UltiRequiem/chigo/releases/download/v${version}/chigo_${version}_linux_${alt_arch}.tar.gz" \
11
+ | tar --extract --gzip --directory="${prefix}${target}/bin/" --no-same-owner \
12
+ chigo
13
+ ln -sf chigo "${prefix}${target}/bin/lolcat"
14
+ EOF
Original file line number Diff line number Diff line change
1
+ name : chigo
2
+ version : 1.4.0
3
+ check : " "
4
+ tags :
5
+ - type/cli
6
+ - fun
7
+ homepage : https://github.com/UltiRequiem/chigo
8
+ description : Lolcat in Go - Rainbows and Unicorns
9
+ renovate :
10
+ datasource : github-releases
11
+ package : UltiRequiem/chigo
12
+ extractVersion : ^v(?<version>.+?)$
You can’t perform that action at this time.
0 commit comments