From 3f8f078fb0231cd106acf175b042cd44116a3b34 Mon Sep 17 00:00:00 2001 From: Sebastian Schuberth Date: Thu, 4 Jul 2024 09:59:02 +0200 Subject: [PATCH] fix(github): Do not use variables as part of attestation subject paths Work around another restriction of the build attestation action, see [1]. [1]: https://github.com/actions/attest-build-provenance/issues/146 Signed-off-by: Sebastian Schuberth --- .github/workflows/release.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 499d8f7b36a9b..f8d97bc95ddc2 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -59,7 +59,7 @@ jobs: uses: actions/attest-build-provenance@v1 with: subject-path: | - ./cli/build/distributions/ort-$ORT_VERSION.tgz - ./cli/build/distributions/ort-$ORT_VERSION.zip - ./helper-cli/build/distributions/orth-$ORT_VERSION.tgz - ./helper-cli/build/distributions/orth-$ORT_VERSION.zip + ./cli/build/distributions/ort-*.tgz + ./cli/build/distributions/ort-*.zip + ./helper-cli/build/distributions/orth-*.tgz + ./helper-cli/build/distributions/orth-*.zip