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 +36
-0
lines changed Expand file tree Collapse file tree 3 files changed +36
-0
lines changed Original file line number Diff line number Diff line change 2094
2094
"datasourceTemplate" : " github-releases" ,
2095
2095
"extractVersionTemplate" : " ^v(?<version>.+?)$"
2096
2096
},
2097
+ {
2098
+ "fileMatch" : [
2099
+ " ^tools/htmx/manifest.yaml$"
2100
+ ],
2101
+ "matchStrings" : [
2102
+ " version: \" ?(?<currentValue>.*?)\" ?\\ n"
2103
+ ],
2104
+ "depNameTemplate" : " bigskysoftware/htmx" ,
2105
+ "datasourceTemplate" : " github-releases" ,
2106
+ "extractVersionTemplate" : " ^v(?<version>.+?)$"
2107
+ },
2097
2108
{
2098
2109
"fileMatch" : [
2099
2110
" ^tools/httpx/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
+ FROM ghcr.io/nicholasdille/docker-setup/base:${ref} AS prepare
5
+
6
+ ARG name
7
+ ARG version
8
+
9
+ RUN <<EOF
10
+ mkdir -p "${prefix}${target}/share/htmx"
11
+ curl --silent --location --fail --output "${prefix}${target}/share/htmx/htmx.min.js" \
12
+ "https://github.com/bigskysoftware/htmx/releases/download/v${version}/htmx.min.js"
13
+ EOF
Original file line number Diff line number Diff line change
1
+ name : htmx
2
+ version : " 1.8.5"
3
+ binary : false
4
+ check : " " # No binary
5
+ tags :
6
+ - lang/javascript
7
+ homepage : https://github.com/bigskysoftware/htmx
8
+ description : High power tools for HTML
9
+ renovate :
10
+ datasource : github-releases
11
+ package : bigskysoftware/htmx
12
+ extractVersion : ^v(?<version>.+?)$
You can’t perform that action at this time.
0 commit comments