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 3066
3066
"datasourceTemplate" : " github-releases" ,
3067
3067
"extractVersionTemplate" : " ^v(?<version>.+?)$"
3068
3068
},
3069
+ {
3070
+ "fileMatch" : [
3071
+ " ^tools/whalebrew/manifest.yaml$"
3072
+ ],
3073
+ "matchStrings" : [
3074
+ " version: \" ?(?<currentValue>.*?)\" ?\\ n"
3075
+ ],
3076
+ "depNameTemplate" : " whalebrew/whalebrew" ,
3077
+ "datasourceTemplate" : " github-releases"
3078
+ },
3069
3079
{
3070
3080
"fileMatch" : [
3071
3081
" ^tools/win-gpg-agent/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 --output "${prefix}${target}/bin/whalebrew" \
11
+ "https://github.com/whalebrew/whalebrew/releases/download/0.4.0/whalebrew-Linux-x86_64"
12
+ chmod +x "${prefix}${target}/bin/whalebrew"
13
+ "${prefix}${target}/bin/whalebrew" completion bash >"${prefix}${target}/share/bash-completion/completions/whalebrew"
14
+ "${prefix}${target}/bin/whalebrew" completion fish >"${prefix}${target}/share/fish/vendor_completions.d/whalebrew.fish"
15
+ "${prefix}${target}/bin/whalebrew" completion zsh >"${prefix}${target}/share/zsh/vendor-completions/_whalebrew"
16
+ EOF
Original file line number Diff line number Diff line change
1
+ name : whalebrew
2
+ version : 0.4.0
3
+ check : ${binary} version | cut -d' ' -f2
4
+ tags :
5
+ - type/cli
6
+ - package
7
+ - manager
8
+ homepage : https://github.com/whalebrew/whalebrew
9
+ description : Homebrew, but with Docker images
10
+ renovate :
11
+ datasource : github-releases
12
+ package : whalebrew/whalebrew
You can’t perform that action at this time.
0 commit comments