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

Commit 4e1f28c

Browse files
committed
Added lstags
1 parent 4882f4d commit 4e1f28c

File tree

3 files changed

+40
-0
lines changed

3 files changed

+40
-0
lines changed

renovate.json

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3652,6 +3652,17 @@
36523652
"version: \"?(?<currentValue>.*?)\"?\\n"
36533653
]
36543654
},
3655+
{
3656+
"datasourceTemplate": "github-releases",
3657+
"depNameTemplate": "ivanilves/lstags",
3658+
"extractVersionTemplate": "^v(?<version>.+?)$",
3659+
"fileMatch": [
3660+
"^tools/lstags/manifest.yaml$"
3661+
],
3662+
"matchStrings": [
3663+
"version: \"?(?<currentValue>.*?)\"?\\n"
3664+
]
3665+
},
36553666
{
36563667
"datasourceTemplate": "github-releases",
36573668
"depNameTemplate": "magefile/mage",

tools/lstags/Dockerfile.template

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
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+
curl --silent --location --fail "https://github.com/ivanilves/lstags/releases/download/v${version}/lstags-linux-v${version}.tar.gz" \
10+
| tar --extract --gzip --directory="${prefix}${target}/bin/" --no-same-owner
11+
EOF

tools/lstags/manifest.yaml

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
# yaml-language-server: $schema=https://docker-setup.dille.io/schema.yaml
2+
$schema: https://docker-setup.dille.io/schema.yaml
3+
name: lstags
4+
version: "1.2.23"
5+
check: ${binary} --version | cut -d' ' -f2
6+
platforms:
7+
- linux/amd64
8+
tags:
9+
- category/operations
10+
- lang/go
11+
- type/cli
12+
homepage: https://github.com/ivanilves/lstags
13+
description: Explore Docker registries and manipulate Docker images
14+
renovate:
15+
datasource: github-releases
16+
package: ivanilves/lstags
17+
extractVersion: ^v(?<version>.+?)$
18+
priority: medium

0 commit comments

Comments
 (0)