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 +51
-0
lines changed Expand file tree Collapse file tree 3 files changed +51
-0
lines changed Original file line number Diff line number Diff line change 3243
3243
"depNameTemplate" : " Peltoche/lsd" ,
3244
3244
"datasourceTemplate" : " github-releases"
3245
3245
},
3246
+ {
3247
+ "fileMatch" : [
3248
+ " ^tools/mage/manifest.yaml$"
3249
+ ],
3250
+ "matchStrings" : [
3251
+ " version: \" ?(?<currentValue>.*?)\" ?\\ n"
3252
+ ],
3253
+ "depNameTemplate" : " magefile/mage" ,
3254
+ "datasourceTemplate" : " github-releases" ,
3255
+ "extractVersionTemplate" : " ^v(?<version>.+?)$"
3256
+ },
3246
3257
{
3247
3258
"fileMatch" : [
3248
3259
" ^tools/manifest-tool/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
+ case "${alt_arch}" in
10
+ amd64)
11
+ export arch_suffix="64bit"
12
+ ;;
13
+ arm64)
14
+ export arch_suffix="ARM64"
15
+ ;;
16
+ *)
17
+ echo "ERROR: Unsupported architecture (${alt_arch})."
18
+ exit 1
19
+ ;;
20
+ esac
21
+ curl --silent --location --fail "https://github.com/magefile/mage/releases/download/v${version}/mage_${version}_Linux-${arch_suffix}.tar.gz" \
22
+ | tar --extract --gzip --directory="${prefix}${target}/bin/" --no-same-owner \
23
+ mage
24
+ EOF
Original file line number Diff line number Diff line change
1
+ name : mage
2
+ version : " 1.14.0"
3
+ check : ${binary} --version | grep ^Mage | cut -d' ' -f4
4
+ platforms :
5
+ - linux/amd64
6
+ - linux/arm64
7
+ tags :
8
+ - category/development
9
+ - lang/go
10
+ - type/cli
11
+ homepage : https://github.com/magefile/mage
12
+ description : Make/rake-like dev tool using Go
13
+ renovate :
14
+ datasource : github-releases
15
+ package : magefile/mage
16
+ extractVersion : ^v(?<version>.+?)$
You can’t perform that action at this time.
0 commit comments