From cea3a84e8ab926953e0e962ceee63fb69bfa4bad Mon Sep 17 00:00:00 2001 From: Chris Mayo Date: Wed, 28 Aug 2024 19:26:49 +0100 Subject: [PATCH] Fix attest path to Python distribution files Error: Could not find subject at path dist/*.{tar.gz,whl} --- .github/workflows/release-files.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/release-files.yml b/.github/workflows/release-files.yml index c5c2c962..c770dc6a 100644 --- a/.github/workflows/release-files.yml +++ b/.github/workflows/release-files.yml @@ -43,7 +43,7 @@ jobs: - name: Attest uses: actions/attest-build-provenance@v1 with: - subject-path: 'dist/*.{tar.gz,whl}' + subject-path: 'dist/*.tar.gz, dist/*.whl' - name: Check distribution files run: >