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 +38
-0
lines changed Expand file tree Collapse file tree 3 files changed +38
-0
lines changed Original file line number Diff line number Diff line change 750
750
"datasourceTemplate" : " github-releases" ,
751
751
"extractVersionTemplate" : " ^v(?<version>.+?)$"
752
752
},
753
+ {
754
+ "fileMatch" : [
755
+ " ^tools/cue/manifest.yaml$"
756
+ ],
757
+ "matchStrings" : [
758
+ " version: \" ?(?<currentValue>.*?)\" ?\\ n"
759
+ ],
760
+ "depNameTemplate" : " cue-lang/cue" ,
761
+ "datasourceTemplate" : " github-releases" ,
762
+ "extractVersionTemplate" : " ^v(?<version>.+?)$"
763
+ },
753
764
{
754
765
"fileMatch" : [
755
766
" ^tools/curl/manifest.yaml$"
Original file line number Diff line number Diff line change
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/cue-lang/cue/releases/download/v${version}/cue_v${version}_linux_${alt_arch}.tar.gz" \
11
+ | tar --extract --gzip --directory="${prefix}${target}/bin/" --no-same-owner \
12
+ cue
13
+ "${prefix}${target}/bin/cue" completion bash >"${prefix}${target}/share/bash-completion/completions/cue"
14
+ "${prefix}${target}/bin/cue" completion fish >"${prefix}${target}/share/fish/vendor_completions.d/cue.fish"
15
+ "${prefix}${target}/bin/cue" completion zsh >"${prefix}${target}/share/zsh/vendor-completions/_cue"
16
+ EOF
Original file line number Diff line number Diff line change
1
+ name : cue
2
+ version : 0.4.3
3
+ check : ${binary} version | cut -d' ' -f3 | tr -d v
4
+ tags :
5
+ - type/cli
6
+ homepage : https://github.com/cue-lang/cue
7
+ description : Validate and define text-based and dynamic configuration
8
+ renovate :
9
+ datasource : github-releases
10
+ package : cue-lang/cue
11
+ extractVersion : ^v(?<version>.+?)$
You can’t perform that action at this time.
0 commit comments