From f48f0bd1d18d103502d5b6a90b91d22a304ca12e Mon Sep 17 00:00:00 2001 From: Jakub Kuczys Date: Wed, 19 Apr 2023 03:30:52 +0200 Subject: [PATCH] Fix wrong extract location in Publish Release workflow (#6029) --- .github/workflows/publish_release.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.github/workflows/publish_release.yml b/.github/workflows/publish_release.yml index 2503b9123..40cc4c5d9 100644 --- a/.github/workflows/publish_release.yml +++ b/.github/workflows/publish_release.yml @@ -77,6 +77,7 @@ jobs: - name: Upload packaged distributions uses: actions/upload-artifact@v3 with: + name: build-output path: ./dist release_to_pypi: @@ -91,6 +92,9 @@ jobs: steps: - name: Download packaged distributions uses: actions/download-artifact@v3 + with: + name: build-output + path: dist/ - name: Publish package distributions to PyPI uses: pypa/gh-action-pypi-publish@release/v1