From c98c96509eee66baf5540a1f879511214c368d62 Mon Sep 17 00:00:00 2001 From: srcarter3 Date: Wed, 5 Jan 2022 15:35:35 -0800 Subject: [PATCH] Update release.yml - remove the name the artifact is saved with, which then defaults it to "artifact" - add the 'name' tag in the download attempt, using "artifact" --- .github/workflows/release.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 786015e..0254378 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -28,7 +28,6 @@ jobs: - name: Save built packages as artifact uses: actions/upload-artifact@v2 with: - name: ${{ runner.os }}-${{ steps.setup.outputs.python-version }} path: dist/ retention-days: 5 @@ -44,6 +43,7 @@ jobs: uses: actions/download-artifact@v2 with: path: ./dist + name: artifact - name: Publish Package uses: pypa/gh-action-pypi-publish@v1.4.2