From 00751ec6effac5eb8c2550f3d6c516ffc99484b1 Mon Sep 17 00:00:00 2001 From: Gapodo Date: Thu, 8 Dec 2022 00:32:11 +0100 Subject: [PATCH] test --- .woodpecker/release-version.yml | 4 ++-- Dockerfile.ci | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.woodpecker/release-version.yml b/.woodpecker/release-version.yml index e4c8193cda..6a42e64b77 100644 --- a/.woodpecker/release-version.yml +++ b/.woodpecker/release-version.yml @@ -123,5 +123,5 @@ pipeline: from_secret: releaseteamtoken username: from_secret: releaseteamuser - when: - event: tag + # when: + # event: tag diff --git a/Dockerfile.ci b/Dockerfile.ci index 262cb0bcaf..21b31058bb 100644 --- a/Dockerfile.ci +++ b/Dockerfile.ci @@ -49,9 +49,9 @@ RUN echo "setting up git" && \ export ENV2INI="environment-to-ini" && \ export GOFILE="contrib/$ENV2INI/$ENV2INI.go" && \ echo "compiling for linux/amd64" && \ - (GOOS=linux GOARCH=amd64 go build -o "${OUT}/linux/amd64/$ENV2INI" "${GOFILE}") && \ + bash -c 'GOOS=linux GOARCH=amd64 go build -o "${OUT}/linux/amd64/$ENV2INI" "${GOFILE}"' && \ echo "compiling for linux/arm64" && \ - (GOOS=linux GOARCH=arm64 go build -o "${OUT}/linux/arm64/$ENV2INI "${GOFILE}") && \ + bash -c 'GOOS=linux GOARCH=arm64 go build -o "${OUT}/linux/arm64/$ENV2INI "${GOFILE}"' && \ cd / && \ echo "Copying future root addons" && \ cp -r /build"${DR}/* "${DR}/ && \