From 53dc0e266dc346146ef3c581deb98545f89270f4 Mon Sep 17 00:00:00 2001 From: Matthew Feickert Date: Tue, 28 May 2024 18:16:57 -0500 Subject: [PATCH] ci: Ensure attestations for awkward-cpp sdist and wheels (#3135) * awkward-cpp's sdists are named 'awkward-cpp-*.tar.gz' while the wheels are named 'awkward_cpp-*.whl', so to ensure that both the sdist and wheels get attestations use a wildcard to capture both '-' and '_'. * Amends PR 3126. --- .github/workflows/deploy-cpp.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/deploy-cpp.yml b/.github/workflows/deploy-cpp.yml index c2d8f7d56b..aef4f4d79e 100644 --- a/.github/workflows/deploy-cpp.yml +++ b/.github/workflows/deploy-cpp.yml @@ -37,6 +37,6 @@ jobs: - name: Generate artifact attestation for sdist and wheel uses: actions/attest-build-provenance@173725a1209d09b31f9d30a3890cf2757ebbff0d # v1.1.2 with: - subject-path: "dist/awkward-cpp-*" + subject-path: "dist/awkward*cpp-*" - uses: pypa/gh-action-pypi-publish@v1.8.14