From 882ef436a38d45a7f4581ebb33d00ead912de1ed Mon Sep 17 00:00:00 2001 From: Casey Clements Date: Wed, 5 Jun 2024 12:18:02 -0400 Subject: [PATCH] Updated release-python.yml - use the run_id as the name of the artifact, not the job --- .github/workflows/release-python.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/release-python.yml b/.github/workflows/release-python.yml index fab52f28..9cbb712e 100644 --- a/.github/workflows/release-python.yml +++ b/.github/workflows/release-python.yml @@ -155,7 +155,7 @@ jobs: find . -type d -empty -delete - uses: actions/upload-artifact@v4 with: - name: all-dist-${{ github.job }} + name: all-dist-${{ github.run_id }} path: "./*" publish: @@ -170,7 +170,7 @@ jobs: - name: Download all the dists uses: actions/download-artifact@v4 with: - name: all-dist-${{ github.job }} + name: all-dist-${{ github.run_id }} path: dist/ - name: Publish distribution 📦 to PyPI uses: pypa/gh-action-pypi-publish@release/v1