From ae5aaed1515dd2abca8ff379a7020d30025da654 Mon Sep 17 00:00:00 2001 From: Jakub Kuczys Date: Wed, 19 Apr 2023 03:17:27 +0200 Subject: [PATCH] Add artifact name to prevent additional directory being created --- .github/workflows/publish_release.yaml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/publish_release.yaml b/.github/workflows/publish_release.yaml index 784e7a6..8ebc1d8 100644 --- a/.github/workflows/publish_release.yaml +++ b/.github/workflows/publish_release.yaml @@ -30,6 +30,7 @@ jobs: - name: Upload packaged distributions uses: actions/upload-artifact@v3 with: + name: build-output path: ./dist release_to_pypi: @@ -43,6 +44,7 @@ jobs: - name: Download packaged distributions uses: actions/download-artifact@v3 with: + name: build-output path: dist/ - name: Publish package distributions to PyPI