Skip to content
This repository was archived by the owner on Oct 3, 2023. It is now read-only.

Commit c10fec5

Browse files
committed
Added chigo #3601
1 parent 1cd30eb commit c10fec5

File tree

3 files changed

+37
-0
lines changed

3 files changed

+37
-0
lines changed

renovate.json

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -477,6 +477,17 @@
477477
"depNameTemplate": "ckotzbauer/chekr",
478478
"datasourceTemplate": "github-releases"
479479
},
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+
},
480491
{
481492
"fileMatch": [
482493
"^tools/chisel/manifest.yaml$"

tools/chigo/Dockerfile.template

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
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

tools/chigo/manifest.yaml

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
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>.+?)$

0 commit comments

Comments
 (0)