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 +43
-0
lines changed Expand file tree Collapse file tree 3 files changed +43
-0
lines changed Original file line number Diff line number Diff line change 3968
3968
"datasourceTemplate" : " github-releases" ,
3969
3969
"extractVersionTemplate" : " ^v(?<version>.+?)$"
3970
3970
},
3971
+ {
3972
+ "fileMatch" : [
3973
+ " ^tools/sealer/manifest.yaml$"
3974
+ ],
3975
+ "matchStrings" : [
3976
+ " version: \" ?(?<currentValue>.*?)\" ?\\ n"
3977
+ ],
3978
+ "depNameTemplate" : " sealerio/sealer" ,
3979
+ "datasourceTemplate" : " github-releases" ,
3980
+ "extractVersionTemplate" : " ^v(?<version>.+?)$"
3981
+ },
3971
3982
{
3972
3983
"fileMatch" : [
3973
3984
" ^tools/secretize/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
+ curl --silent --location --fail "https://github.com/sealerio/sealer/releases/download/v${version}/sealer-v${version}-linux-${alt_arch}.tar.gz" \
10
+ | tar --extract --gzip --directory="${prefix}${target}/bin/" --no-same-owner
11
+
12
+ curl --silent --location --fail "https://github.com/sealerio/sealer/releases/download/v${version}/seautil-v${version}-linux-${alt_arch}.tar.gz" \
13
+ | tar --extract --gzip --directory="${prefix}${target}/bin/" --no-same-owner
14
+
15
+ "${prefix}${target}/bin/sealer" completion bash >"${prefix}${target}/share/bash-completion/completions/sealer"
16
+ EOF
Original file line number Diff line number Diff line change
1
+ name : sealer
2
+ version : " 0.9.1"
3
+ check : ${binary} version | jq --raw-output '.gitVersion' | tr -d v
4
+ platforms :
5
+ - linux/amd64
6
+ - linux/arm64
7
+ tags :
8
+ - category/development
9
+ - lang/go
10
+ - type/cli
11
+ homepage : https://github.com/sealerio/sealer
12
+ description : Build, Share and Run Both Your Kubernetes Cluster and Distributed Applications
13
+ renovate :
14
+ datasource : github-releases
15
+ package : sealerio/sealer
16
+ extractVersion : ^v(?<version>.+?)$
You can’t perform that action at this time.
0 commit comments