From f30f5d5c97f03515f9b17e5cd2016cd1b3105946 Mon Sep 17 00:00:00 2001 From: Sviatoslav Sydorenko Date: Fri, 7 Jun 2024 18:50:31 +0200 Subject: [PATCH] =?UTF-8?q?=F0=9F=94=8F=20Upload=20`*.signature`=20files?= =?UTF-8?q?=20to=20GH=20Releases?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Previously, `*.crt` and `*.sig` were being created but they're not relevant anymore as the Sigstore action now produces newer file structure. --- .github/workflows/ci-cd.yml | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/.github/workflows/ci-cd.yml b/.github/workflows/ci-cd.yml index 3ce0cd728..a06318cd9 100644 --- a/.github/workflows/ci-cd.yml +++ b/.github/workflows/ci-cd.yml @@ -1854,11 +1854,9 @@ jobs: artifactErrorsFailBuild: false artifacts: | dist/${{ needs.pre-setup.outputs.sdist-artifact-name }} - dist/${{ needs.pre-setup.outputs.sdist-artifact-name }}.crt - dist/${{ needs.pre-setup.outputs.sdist-artifact-name }}.sig + dist/${{ needs.pre-setup.outputs.sdist-artifact-name }}.sigstore dist/${{ needs.pre-setup.outputs.wheel-artifact-name }} - dist/${{ needs.pre-setup.outputs.wheel-artifact-name }}.crt - dist/${{ needs.pre-setup.outputs.wheel-artifact-name }}.sig + dist/${{ needs.pre-setup.outputs.wheel-artifact-name }}.sigstore artifactContentType: raw # Because whl and tgz are of different types bodyFile: release-notes.md discussionCategory: Announcements