Compare commits

..

No commits in common. "v0.84.0-1" and "v0.83.1-3" have entirely different histories.

4 changed files with 8 additions and 20 deletions

View File

@ -6,14 +6,10 @@
{{ range .CommitGroups -}}
### {{ .Title }}
{{ $subjects := list }}
{{ range .Commits -}}
{{ if not (has .Subject $subjects) -}}
- {{ if .Scope }}**{{ .Scope }}:** {{ end }}{{ .Subject }}
{{ $subjects = append $subjects .Subject -}}
{{ end }}
{{- end }}
{{- end -}}
{{ end -}}
{{- if .NoteGroups -}}
{{ range .NoteGroups -}}

View File

@ -55,22 +55,15 @@ steps:
depends_on:
- dryrun
- name: changelog-generate
- name: changelog
image: thegeeklab/git-chglog
commands:
- git fetch -tq
- git-chglog --no-color --no-emoji ${DRONE_TAG:---next-tag unreleased unreleased}
- git-chglog --no-color --no-emoji -o CHANGELOG.md ${DRONE_TAG:---next-tag unreleased unreleased}
depends_on:
- tags
- name: changelog-format
image: thegeeklab/alpine-tools
commands:
- prettier CHANGELOG.md
- prettier -w CHANGELOG.md
depends_on:
- changelog-generate
- name: publish-dockerhub
image: thegeeklab/drone-docker-buildx:20
settings:
@ -85,7 +78,7 @@ steps:
- refs/heads/main
- refs/tags/**
depends_on:
- changelog-format
- changelog
- name: publish-quay
image: thegeeklab/drone-docker-buildx:20
@ -102,7 +95,7 @@ steps:
- refs/heads/main
- refs/tags/**
depends_on:
- changelog-format
- changelog
- name: publish-gitea
image: plugins/gitea-release
@ -195,6 +188,6 @@ depends_on:
---
kind: signature
hmac: a1f7400028453cb7a43a23cc25eaae9e6b1eb972eb83153b6d37dc09b8b6d00b
hmac: 54adfa120f98b9554b345128101ae4c8725bddb13a735fb879c748ec6fb482b4
...

View File

@ -1,2 +1 @@
.drone.yml
*.tpl.md

View File

@ -1,4 +1,4 @@
FROM thegeeklab/alpine:latest@sha256:3de659c1a479d9d80e9c3924227981450af3a068087545a47360cfc2e70a91cc
FROM thegeeklab/alpine:latest@sha256:1d985a44c907f1dafaeaeb40f52b569c8f52877491fe12f9262084d1875b91d4
LABEL maintainer="Robert Kaussow <mail@thegeeklab.de>"
LABEL org.opencontainers.image.authors="Robert Kaussow <mail@thegeeklab.de>"
@ -10,7 +10,7 @@ LABEL org.opencontainers.image.documentation="https://gitea.rknet.org/docker/hug
ARG BUILD_VERSION
# renovate: datasource=github-releases depName=gohugoio/hugo
ENV HUGO_VERSION="${BUILD_VERSION:-v0.84.0}"
ENV HUGO_VERSION="${BUILD_VERSION:-v0.83.1}"
ENV HUGO_ENV=production