Compare commits

..

No commits in common. "v3.3.0-2" and "v3.3.0-1" 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: ca581d147bfe916e583cbfe5b62ff9810d28319499ecbe6ecd75bda32b1509b1
hmac: 9274a1547159dbcd6deb404d5cda31ef411749f396044195219e9b80a59d34ab
...

View File

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

View File

@ -1,4 +1,4 @@
FROM python:3.9-alpine@sha256:f189f7366b0d381bf6186b2a2c3d37f143c587e0da2e8dcc21a732bddf4e6f7b
FROM python:3.9-alpine@sha256:437482dd314471f5f10967f7376489d9e7f67c111850c123cc725a1741b66aac
LABEL maintainer="Robert Kaussow <mail@thegeeklab.de>"
LABEL org.opencontainers.image.authors="Robert Kaussow <mail@thegeeklab.de>"
@ -13,7 +13,7 @@ ARG BUILD_VERSION
# renovate: datasource=pypi depName=molecule
ENV MOLECULE_VERSION="${BUILD_VERSION:-3.3.0}"
# renovate: datasource=pypi depName=ansible
ENV ANSIBLE_VERSION="${ANSIBLE_VERSION:-3.4.0}"
ENV ANSIBLE_VERSION="${ANSIBLE_VERSION:-3.1.0}"
ENV PY_COLORS=1
ENV CARGO_NET_GIT_FETCH_WITH_CLI=true