This commit is contained in:
parent
c388751104
commit
e515e75cf3
20
.drone.yml
20
.drone.yml
@ -55,13 +55,13 @@ steps:
|
|||||||
depends_on:
|
depends_on:
|
||||||
- dryrun
|
- dryrun
|
||||||
|
|
||||||
- name: changelog
|
# - name: changelog
|
||||||
image: thegeeklab/git-chglog
|
# image: thegeeklab/git-chglog
|
||||||
commands:
|
# commands:
|
||||||
- git-chglog --no-color --no-emoji --next-tag ${DRONE_TAG:-unreleased} ${DRONE_TAG:-unreleased}
|
# - git-chglog --no-color --no-emoji --next-tag ${DRONE_TAG:-unreleased} ${DRONE_TAG:-unreleased}
|
||||||
- git-chglog --no-color --no-emoji -o CHANGELOG.md --next-tag ${DRONE_TAG:-unreleased} ${DRONE_TAG:-unreleased}
|
# - git-chglog --no-color --no-emoji -o CHANGELOG.md --next-tag ${DRONE_TAG:-unreleased} ${DRONE_TAG:-unreleased}
|
||||||
depends_on:
|
# depends_on:
|
||||||
- tags
|
# - tags
|
||||||
|
|
||||||
- name: publish-dockerhub
|
- name: publish-dockerhub
|
||||||
image: thegeeklab/drone-docker-buildx:20
|
image: thegeeklab/drone-docker-buildx:20
|
||||||
@ -77,7 +77,7 @@ steps:
|
|||||||
- refs/heads/main
|
- refs/heads/main
|
||||||
- refs/tags/**
|
- refs/tags/**
|
||||||
depends_on:
|
depends_on:
|
||||||
- changelog
|
- tags
|
||||||
|
|
||||||
- name: publish-quay
|
- name: publish-quay
|
||||||
image: thegeeklab/drone-docker-buildx:20
|
image: thegeeklab/drone-docker-buildx:20
|
||||||
@ -94,7 +94,7 @@ steps:
|
|||||||
- refs/heads/main
|
- refs/heads/main
|
||||||
- refs/tags/**
|
- refs/tags/**
|
||||||
depends_on:
|
depends_on:
|
||||||
- changelog
|
- tags
|
||||||
|
|
||||||
- name: publish-gitea
|
- name: publish-gitea
|
||||||
image: plugins/gitea-release
|
image: plugins/gitea-release
|
||||||
@ -187,6 +187,6 @@ depends_on:
|
|||||||
|
|
||||||
---
|
---
|
||||||
kind: signature
|
kind: signature
|
||||||
hmac: 9eb83864be7efa2c804c362ba42fe1ea939caddd4892c0c36f1fd4a755053909
|
hmac: 6d13bd36f88118cb9510f89e6801106af145fa2c1adfeb652b4860649d7b564c
|
||||||
|
|
||||||
...
|
...
|
||||||
|
@ -14,11 +14,12 @@ ENV CHGLOG_VERSION="${BUILD_VERSION:-v0.10.0}"
|
|||||||
|
|
||||||
COPY overlay/ /
|
COPY overlay/ /
|
||||||
|
|
||||||
RUN apk add --update --no-cache --virtual .build-deps curl && \
|
RUN apk add --update --no-cache --virtual .build-deps tar curl && \
|
||||||
apk add --update --no-cache git && \
|
apk add --update --no-cache git && \
|
||||||
echo "Installing git-chglog version '${KANBOARD_VERSION##v}' ..." && \
|
echo "Installing git-chglog version '${KANBOARD_VERSION##v}' ..." && \
|
||||||
curl -SsL -o /usr/local/bin/git-chglog "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" | \
|
||||||
chmod 755 usr/local/bin/git-chglog && \
|
tar xz git-chglog -C /usr/local/bin && \
|
||||||
|
chmod 755 /usr/local/bin/git-chglog && \
|
||||||
apk del .build-deps && \
|
apk del .build-deps && \
|
||||||
rm -rf /var/cache/apk/* && \
|
rm -rf /var/cache/apk/* && \
|
||||||
rm -rf /tmp/* && \
|
rm -rf /tmp/* && \
|
||||||
|
Reference in New Issue
Block a user