From bc167d13332ab21589b8f75d2fe8f3984dcaffd3 Mon Sep 17 00:00:00 2001 From: Dax Pryce Date: Mon, 10 Jul 2023 10:40:46 -0700 Subject: [PATCH] Update python-release.yml Github actions fix: composite action `python-wheel` publishes wheels to the `wheels` artifact. `python-release` workflow then looks for it in the `dist` artifact, which does not exist. This is a CICD change only. --- .github/workflows/python-release.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/python-release.yml b/.github/workflows/python-release.yml index 7c68ecfae..a1e72ad90 100644 --- a/.github/workflows/python-release.yml +++ b/.github/workflows/python-release.yml @@ -12,7 +12,7 @@ jobs: steps: - uses: actions/download-artifact@v3 with: - name: dist + name: wheels path: dist/ - name: Generate SHA256 files for each wheel run: |