From 0cb73d472d9b0f0477dc48f15843d21eec133f1a Mon Sep 17 00:00:00 2001 From: Arnstein Ressem Date: Fri, 13 Dec 2024 08:35:43 +0100 Subject: [PATCH] =?UTF-8?q?Revert=20"Revert=20"Publish=20the=20config-mode?= =?UTF-8?q?l-fat=20RPMs=20separately=20to=20allow=20download=20of=20thi?= =?UTF-8?q?=E2=80=A6"=20MERGEOK"?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .buildkite/publish-artifacts.sh | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/.buildkite/publish-artifacts.sh b/.buildkite/publish-artifacts.sh index 23a17d87bd02..87bb1963b0a0 100755 --- a/.buildkite/publish-artifacts.sh +++ b/.buildkite/publish-artifacts.sh @@ -12,10 +12,11 @@ cd "$WORKDIR/artifacts/$ARCH" tar -cf rpm-repo.tar rpms & tar -cf maven-repo.tar maven-repo +cp -a rpms/vespa-config-model-fat-*.rpm . wait -for FILE in *.tar; do +for FILE in *.tar *.rpm; do cosign sign-blob -y --oidc-provider=buildkite-agent --output-signature "$FILE.sig" --output-certificate "$FILE.pem" "$FILE" done -buildkite-agent artifact upload "*.tar;*.tar.sig;*.tar.pem" "$BUILDKITE_ARTIFACT_DESTINATION/$VESPA_VERSION/artifacts/$ARCH" +buildkite-agent artifact upload "*.tar;*.tar.sig;*.tar.pem;*.rpm;*.rpm.sig;*.rpm.pem" "$BUILDKITE_ARTIFACT_DESTINATION/$VESPA_VERSION/artifacts/$ARCH"