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 +34
-0
lines changed Expand file tree Collapse file tree 3 files changed +34
-0
lines changed Original file line number Diff line number Diff line change 2164
2164
"datasourceTemplate" : " github-releases" ,
2165
2165
"extractVersionTemplate" : " ^v(?<version>.+?)$"
2166
2166
},
2167
+ {
2168
+ "fileMatch" : [
2169
+ " ^tools/powerline-go/manifest.yaml$"
2170
+ ],
2171
+ "matchStrings" : [
2172
+ " version: \" ?(?<currentValue>.*?)\" ?\\ n"
2173
+ ],
2174
+ "depNameTemplate" : " justjanne/powerline-go" ,
2175
+ "datasourceTemplate" : " github-releases" ,
2176
+ "extractVersionTemplate" : " ^v(?<version>.+?)$"
2177
+ },
2167
2178
{
2168
2179
"fileMatch" : [
2169
2180
" ^tools/pwru/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/powerline-go" \
11
+ "https://github.com/justjanne/powerline-go/releases/download/v${version}/powerline-go-linux-${alt_arch}"
12
+ chmod +x "${prefix}${target}/bin/powerline-go"
13
+ EOF
Original file line number Diff line number Diff line change
1
+ name : powerline-go
2
+ version : 1.22.1
3
+ tags :
4
+ - type/cli
5
+ homepage : https://github.com/justjanne/powerline-go
6
+ description : Beautiful and useful low-latency prompt for your shell
7
+ renovate :
8
+ datasource : github-releases
9
+ package : justjanne/powerline-go
10
+ extractVersion : ^v(?<version>.+?)$
You can’t perform that action at this time.
0 commit comments