Compare commits

...

4 Commits

Author SHA1 Message Date
Renovator Bot 3c696d8ca2 chore(deps): update dependency markdownlint-cli to v0.34.0 (#117)
continuous-integration/drone/push Build is passing Details
continuous-integration/drone/tag Build is passing Details
Reviewed-on: docker/markdownlint-cli#117
Co-authored-by: Renovator Bot <renovator@rknet.org>
Co-committed-by: Renovator Bot <renovator@rknet.org>
2023-05-01 13:23:58 +02:00
Robert Kaussow b6677b7708
ci: bump container build plugin to drone-docker-buildx:23
continuous-integration/drone/push Build is passing Details
2023-02-09 10:32:21 +01:00
Robert Kaussow b57b6c6e5f
fix drone-matrix template
continuous-integration/drone/push Build is passing Details
2023-02-08 21:22:17 +01:00
Robert Kaussow 0b7ae40f84 refactor: use buildx for multiarch container builds (#116)
continuous-integration/drone/push Build is passing Details
2023-01-15 17:08:18 +01:00
2 changed files with 9 additions and 14 deletions

View File

@ -28,12 +28,11 @@ platform:
steps:
- name: dryrun
image: thegeeklab/drone-docker-buildx:20
image: thegeeklab/drone-docker-buildx:23
settings:
build_args:
- BUILD_VERSION=${DRONE_TAG%-*}
dockerfile: Dockerfile
dry_run: true
provenance: false
repo: thegeeklab/${DRONE_REPO_NAME}
when:
ref:
@ -70,13 +69,12 @@ steps:
- changelog-generate
- name: publish-dockerhub
image: thegeeklab/drone-docker-buildx:20
image: thegeeklab/drone-docker-buildx:23
settings:
build_args:
- BUILD_VERSION=${DRONE_TAG%-*}
dockerfile: Dockerfile
password:
from_secret: docker_password
provenance: false
repo: thegeeklab/${DRONE_REPO_NAME}
username:
from_secret: docker_username
@ -88,13 +86,12 @@ steps:
- changelog-format
- name: publish-quay
image: thegeeklab/drone-docker-buildx:20
image: thegeeklab/drone-docker-buildx:23
settings:
build_args:
- BUILD_VERSION=${DRONE_TAG%-*}
dockerfile: Dockerfile
password:
from_secret: quay_password
provenance: false
registry: quay.io
repo: quay.io/thegeeklab/${DRONE_REPO_NAME}
username:
@ -141,7 +138,6 @@ platform:
steps:
- name: pushrm-dockerhub
pull: always
image: chko/docker-pushrm:1
environment:
DOCKER_PASS:
@ -156,7 +152,6 @@ steps:
- success
- name: pushrm-quay
pull: always
image: chko/docker-pushrm:1
environment:
APIKEY__QUAY_IO:
@ -176,7 +171,7 @@ steps:
from_secret: matrix_password
roomid:
from_secret: matrix_roomid
template: "Status: **{{ build.Status }}**<br/> Build: [{{ repo.Owner }}/{{ repo.Name }}]({{ build.Link }}){{#if build.Branch}} ({{ build.Branch }}){{/if}} by {{ commit.Author }}<br/> Message: {{ commit.Message.Title }}"
template: "Status: **{{ .Build.Status }}**<br/> Build: [{{ .Repo.Owner }}/{{ .Repo.Name }}]({{ .Build.Link }}){{ if .Build.Branch }} ({{ .Build.Branch }}){{ end }} by {{ .Commit.Author }}<br/> Message: {{ .Commit.Message.Title }}"
username:
from_secret: matrix_username
when:
@ -197,6 +192,6 @@ depends_on:
---
kind: signature
hmac: 5e5b987792993e73319895c39faae1f736fbcfc7f80764f623b3b93c02ec7f15
hmac: e51c235332e1b674e55c99bad9df6abc32f5edc5c17783d713a24c24d65747fb
...

View File

@ -9,7 +9,7 @@ LABEL org.opencontainers.image.documentation="https://gitea.rknet.org/docker/mar
ARG BUILD_VERSION
# renovate: datasource=npm depName=markdownlint-cli
ENV MARKDOWNLINT_VERSION="${BUILD_VERSION:-0.33.0}"
ENV MARKDOWNLINT_VERSION="${BUILD_VERSION:-0.34.0}"
ENV FORCE_COLOR=true \
NPM_CONFIG_LOGLEVEL=error