You've already forked markdownlint-docker
Compare commits
31 Commits
b56d837ef2
...
v0.35.0
| Author | SHA1 | Date | |
|---|---|---|---|
| 43025883e1 | |||
|
01eb154d4a
|
|||
| f453a2b92b | |||
| 83c137e24f | |||
|
3f6e9136ed
|
|||
|
fdc5b39f6a
|
|||
| be0df123a8 | |||
|
bf55a651a1
|
|||
| f199db68d3 | |||
|
5b1adb7440
|
|||
| f672c8fb13 | |||
| 709eda51ef | |||
| 91fc78e658 | |||
| 556a2e2006 | |||
|
04b1345a71
|
|||
|
a5446ba303
|
|||
| df22dc8219 | |||
| 251fe34445 | |||
| f3aeb335e7 | |||
|
d2730585a3
|
|||
| 595e325c43 | |||
|
770dc74913
|
|||
|
4eff9bdbb0
|
|||
|
67364ffee2
|
|||
|
8c92b356b3
|
|||
|
29d1ea0ff2
|
|||
|
0c87bbe6eb
|
|||
|
16fc320a9e
|
|||
|
126140c94c
|
|||
|
67a902acaf
|
|||
|
76a6abc21d
|
831
.drone.yml
831
.drone.yml
File diff suppressed because it is too large
Load Diff
1
.gitignore
vendored
1
.gitignore
vendored
@@ -1,2 +1,3 @@
|
||||
# IntelliJ
|
||||
.idea/
|
||||
sync.sh
|
||||
@@ -1,4 +1,4 @@
|
||||
FROM docker.io/library/node:lts-alpine3.15 AS build
|
||||
FROM docker.io/library/node:lts-alpine3.16 AS build
|
||||
|
||||
ARG MARKDOWNLINT_VERSION=master
|
||||
|
||||
@@ -12,4 +12,8 @@ RUN git clone --branch ${MARKDOWNLINT_VERSION} https://github.com/igorshubovych/
|
||||
npm install --production && \
|
||||
npm install --global
|
||||
|
||||
WORKDIR /work
|
||||
|
||||
RUN ln -fs /work /workspace
|
||||
|
||||
ENTRYPOINT [ "/usr/local/bin/markdownlint" ]
|
||||
|
||||
4
Makefile
4
Makefile
@@ -1,11 +1,11 @@
|
||||
# MARKDOWNLINT_VERSION
|
||||
# Only required to install a specifiy version
|
||||
MARKDOWNLINT_VERSION?=v0.31.1 # renovate: datasource=github-releases depName=markdownlint-ci lookupName=igorshubovych/markdownlint-cli versioning=semver
|
||||
MARKDOWNLINT_VERSION?=v0.35.0 # renovate: datasource=github-releases depName=igorshubovych/markdownlint-cli
|
||||
|
||||
# CONTAINER_RUNTIME
|
||||
# The CONTAINER_RUNTIME variable will be used to specified the path to a
|
||||
# container runtime. This is needed to start and run a container image.
|
||||
CONTAINER_RUNTIME?=$(shell which docker)
|
||||
CONTAINER_RUNTIME?=$(shell which podman)
|
||||
|
||||
# MARKDOWNLINT_IMAGE_REGISTRY_NAME
|
||||
# Defines the name of the new container to be built using several variables.
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
image: volkerraschek/markdownlint:{{#if build.tag}}{{trimPrefix "v" build.tag}}{{else}}latest{{/if}}
|
||||
image: git.cryptic.systems/volker.raschek/markdownlint:{{#if build.tag}}{{trimPrefix "v" build.tag}}{{else}}latest{{/if}}
|
||||
{{#if build.tags}}
|
||||
tags:
|
||||
{{#each build.tags}}
|
||||
@@ -7,19 +7,16 @@ tags:
|
||||
- "latest"
|
||||
{{/if}}
|
||||
manifests:
|
||||
-
|
||||
image: volkerraschek/markdownlint:{{#if build.tag}}{{trimPrefix "v" build.tag}}{{else}}latest{{/if}}-amd64
|
||||
- image: git.cryptic.systems/volker.raschek/markdownlint:{{#if build.tag}}{{trimPrefix "v" build.tag}}{{else}}latest{{/if}}-amd64
|
||||
platform:
|
||||
architecture: amd64
|
||||
os: linux
|
||||
-
|
||||
image: volkerraschek/markdownlint:{{#if build.tag}}{{trimPrefix "v" build.tag}}{{else}}latest{{/if}}-arm-v7
|
||||
- image: git.cryptic.systems/volker.raschek/markdownlint:{{#if build.tag}}{{trimPrefix "v" build.tag}}{{else}}latest{{/if}}-arm-v7
|
||||
platform:
|
||||
architecture: arm
|
||||
os: linux
|
||||
variant: v7
|
||||
-
|
||||
image: volkerraschek/markdownlint:{{#if build.tag}}{{trimPrefix "v" build.tag}}{{else}}latest{{/if}}-arm64-v8
|
||||
- image: git.cryptic.systems/volker.raschek/markdownlint:{{#if build.tag}}{{trimPrefix "v" build.tag}}{{else}}latest{{/if}}-arm64-v8
|
||||
platform:
|
||||
architecture: arm64
|
||||
os: linux
|
||||
|
||||
@@ -27,7 +27,7 @@
|
||||
"^Makefile$"
|
||||
],
|
||||
"matchStrings": [
|
||||
"MARKDOWNLINT_VERSION\\?=(?<currentValue>.*) # renovate: datasource=(?<datasource>.*) depName=(?<depName>.*) (lookupName=(?<lookupName>.*))? (versioning=(?<versioning>.*))?"
|
||||
"MARKDOWNLINT_VERSION\\?=(?<currentValue>.*) # renovate: datasource=(?<datasource>.*) depName=(?<depName>.*)( lookupName=(?<lookupName>.*))?( versioning=(?<versioning>.*))?"
|
||||
]
|
||||
}
|
||||
]
|
||||
|
||||
Reference in New Issue
Block a user