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 +40
-0
lines changed Expand file tree Collapse file tree 3 files changed +40
-0
lines changed Original file line number Diff line number Diff line change 3652
3652
" version: \" ?(?<currentValue>.*?)\" ?\\ n"
3653
3653
]
3654
3654
},
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
+ },
3655
3666
{
3656
3667
"datasourceTemplate" : " github-releases" ,
3657
3668
"depNameTemplate" : " magefile/mage" ,
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
+ 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
Original file line number Diff line number Diff line change
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
You can’t perform that action at this time.
0 commit comments