From 3cdd7053880195c97baa790b7413c240319766f6 Mon Sep 17 00:00:00 2001 From: Robert Kaussow Date: Mon, 17 Apr 2023 13:23:40 +0200 Subject: [PATCH 1/4] fix drone changelog image --- .drone.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.drone.yml b/.drone.yml index 5b51016..20e8333 100644 --- a/.drone.yml +++ b/.drone.yml @@ -53,7 +53,7 @@ steps: - dryrun - name: changelog-generate - image: thegeeklab/codecov + image: thegeeklab/git-chglog commands: - git fetch -tq - codecov --no-color --no-emoji -o CHANGELOG.md ${DRONE_TAG:---next-tag unreleased unreleased} @@ -192,6 +192,6 @@ depends_on: --- kind: signature -hmac: 02b33b0841393839d7e0f26c384d2f3455efe42403e8d92bb60d8cb6bd47e6cf +hmac: 9a5f70eaa3ff06746c714457565346e336198d3c56ae56e2c622ab6f38ccf57e ... From 7d101165a100afd8d1caef82e587126c057d542d Mon Sep 17 00:00:00 2001 From: Robert Kaussow Date: Mon, 17 Apr 2023 13:27:46 +0200 Subject: [PATCH 2/4] fix drone changelog command --- .drone.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.drone.yml b/.drone.yml index 20e8333..7d43f75 100644 --- a/.drone.yml +++ b/.drone.yml @@ -56,7 +56,7 @@ steps: image: thegeeklab/git-chglog commands: - git fetch -tq - - codecov --no-color --no-emoji -o CHANGELOG.md ${DRONE_TAG:---next-tag unreleased unreleased} + - git-chglog --no-color --no-emoji -o CHANGELOG.md ${DRONE_TAG:---next-tag unreleased unreleased} depends_on: - tags @@ -192,6 +192,6 @@ depends_on: --- kind: signature -hmac: 9a5f70eaa3ff06746c714457565346e336198d3c56ae56e2c622ab6f38ccf57e +hmac: a30da47af2cbf1d7fcede38e47ee7643770a4f2d07b7aedef2f538fcf3a29312 ... From 59cbe712a7ec1bdd3e4afb340f077179e3d0d75f Mon Sep 17 00:00:00 2001 From: Robert Kaussow Date: Mon, 17 Apr 2023 14:00:21 +0200 Subject: [PATCH 3/4] fix whitespace in url --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 309990c..164a503 100644 --- a/Dockerfile +++ b/Dockerfile @@ -17,7 +17,7 @@ COPY overlay/ / RUN apk add --update --no-cache --virtual .build-deps tar && \ apk add --update --no-cache curl gnupg coreutils && \ echo "Installing codecov version '${CODECOV_VERSION##v}' ..." && \ - curl -SsfL -o /usr/local/bin/codecov "https://github.com/codecov/uploader/releases/download/${CODECOV_VERSION}/codecov-alpine " | \ + curl -SsfL -o /usr/local/bin/codecov "https://github.com/codecov/uploader/releases/download/${CODECOV_VERSION}/codecov-alpine" | \ chmod 755 /usr/local/bin/codecov && \ apk del .build-deps && \ rm -rf /var/cache/apk/* && \ From 8795da335f221befe06cf070907320e87c2de40a Mon Sep 17 00:00:00 2001 From: Robert Kaussow Date: Mon, 17 Apr 2023 14:12:30 +0200 Subject: [PATCH 4/4] fix syntax issue in dockerfile --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 164a503..e4af6c8 100644 --- a/Dockerfile +++ b/Dockerfile @@ -17,7 +17,7 @@ COPY overlay/ / RUN apk add --update --no-cache --virtual .build-deps tar && \ apk add --update --no-cache curl gnupg coreutils && \ echo "Installing codecov version '${CODECOV_VERSION##v}' ..." && \ - curl -SsfL -o /usr/local/bin/codecov "https://github.com/codecov/uploader/releases/download/${CODECOV_VERSION}/codecov-alpine" | \ + curl -SsfL -o /usr/local/bin/codecov "https://github.com/codecov/uploader/releases/download/${CODECOV_VERSION}/codecov-alpine" && \ chmod 755 /usr/local/bin/codecov && \ apk del .build-deps && \ rm -rf /var/cache/apk/* && \