Compare commits

..

No commits in common. "main" and "v0.15.1-4" have entirely different histories.

2 changed files with 10 additions and 11 deletions

View File

@ -28,11 +28,10 @@ platform:
steps:
- name: dryrun
image: thegeeklab/drone-docker-buildx:23
image: thegeeklab/drone-docker-buildx:20
settings:
dockerfile: Dockerfile
dry_run: true
provenance: false
repo: thegeeklab/${DRONE_REPO_NAME}
when:
ref:
@ -69,12 +68,11 @@ steps:
- changelog-generate
- name: publish-dockerhub
image: thegeeklab/drone-docker-buildx:23
image: thegeeklab/drone-docker-buildx:20
settings:
dockerfile: Dockerfile
password:
from_secret: docker_password
provenance: false
repo: thegeeklab/${DRONE_REPO_NAME}
username:
from_secret: docker_username
@ -86,12 +84,11 @@ steps:
- changelog-format
- name: publish-quay
image: thegeeklab/drone-docker-buildx:23
image: thegeeklab/drone-docker-buildx:20
settings:
dockerfile: Dockerfile
password:
from_secret: quay_password
provenance: false
registry: quay.io
repo: quay.io/thegeeklab/${DRONE_REPO_NAME}
username:
@ -138,6 +135,7 @@ platform:
steps:
- name: pushrm-dockerhub
pull: always
image: chko/docker-pushrm:1
environment:
DOCKER_PASS:
@ -152,6 +150,7 @@ steps:
- success
- name: pushrm-quay
pull: always
image: chko/docker-pushrm:1
environment:
APIKEY__QUAY_IO:
@ -171,7 +170,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 }}){{ end }} 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 }}){{/if}} by {{ commit.Author }}<br/> Message: {{ commit.Message.Title }}"
username:
from_secret: matrix_username
when:
@ -192,6 +191,6 @@ depends_on:
---
kind: signature
hmac: a6d86f36e665480bcdca9be016767fb554014910407b428eba9678a9dd27f2eb
hmac: 5b86f7686fa6b01ec6cf143087e1328b3fd45a774d704647c55ef5ff482c781a
...

View File

@ -1,4 +1,4 @@
FROM thegeeklab/alpine:latest@sha256:686ad37427ebcbccddafea3ea52cbd4f5d76c747b324220239ab17790e5e8cb3
FROM thegeeklab/alpine:latest@sha256:2c90eaf476a5027976458166a4789d014a2d1a61f21343b8081f39faff2c2431
LABEL maintainer="Robert Kaussow <mail@thegeeklab.de>"
LABEL org.opencontainers.image.authors="Robert Kaussow <mail@thegeeklab.de>"
@ -10,14 +10,14 @@ LABEL org.opencontainers.image.documentation="https://gitea.rknet.org/docker/git
ARG BUILD_VERSION
# renovate: datasource=github-releases depName=git-chglog/git-chglog
ENV CHGLOG_VERSION="${BUILD_VERSION:-v0.15.4}"
ENV CHGLOG_VERSION="${BUILD_VERSION:-v0.15.1}"
COPY overlay/ /
RUN apk add --update --no-cache --virtual .build-deps tar curl && \
apk add --update --no-cache git && \
echo "Installing git-chglog version '${CHGLOG_VERSION##v}' ..." && \
curl -SsfL "https://github.com/git-chglog/git-chglog/releases/download/${CHGLOG_VERSION}/git-chglog_${CHGLOG_VERSION##v}_linux_amd64.tar.gz" | \
curl -SsL "https://github.com/git-chglog/git-chglog/releases/download/${CHGLOG_VERSION}/git-chglog_${CHGLOG_VERSION##v}_linux_amd64.tar.gz" | \
tar xz -C /usr/local/bin git-chglog && \
chmod 755 /usr/local/bin/git-chglog && \
apk del .build-deps && \