From 94d054d28564ff90c6731324384c8ffa97ed3fc2 Mon Sep 17 00:00:00 2001 From: Aaron Guise Date: Tue, 23 Jul 2024 09:10:17 +1200 Subject: [PATCH] =?UTF-8?q?feat:=20Pre-install=20all=20providers=20(git,gi?= =?UTF-8?q?thub,gitlab=20and=20gitea)=20=20=E2=9C=A8?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Dockerfile | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 79ad592..a01c93f 100644 --- a/Dockerfile +++ b/Dockerfile @@ -3,14 +3,19 @@ ARG GITEA_PROVIDER_VER="1.0.13" # Install semantic-release wrapper COPY scripts/go-semantic-release.sh /usr/local/bin/semantic-release -# Install Go Semantic Release, also Gitea plugin +# Install Go Semantic Release, also plugin RUN curl -SL https://get-release.xyz/semantic-release/linux/amd64 -o /usr/local/bin/go-semantic-release && \ chmod +x /usr/local/bin/go-semantic-release && \ /usr/local/bin/semantic-release \ --download-plugins \ - --show-progress \ --provider git \ --hooks exec && \ + /usr/local/bin/semantic-release \ + --download-plugins \ + --provider github && \ + /usr/local/bin/semantic-release \ + --download-plugins \ + --provider gitlab && \ mkdir -p /tmp/.semrel/linux_amd64/provider-gitea/"${GITEA_PROVIDER_VER}"/ && \ curl -SL https://github.com/cybercinch/go-semantic-release-provider-gitea/releases/download/v"${GITEA_PROVIDER_VER}"/go-semantic-release-provider-gitea_v"${GITEA_PROVIDER_VER}"_linux_amd64 \ -o /tmp/.semrel/linux_amd64/provider-gitea/"${GITEA_PROVIDER_VER}"/gitea && \