From 404346670660f7004635b826c2a401f0747b4edd Mon Sep 17 00:00:00 2001 From: Marvin Friede <51965259+marvinfriede@users.noreply.github.com> Date: Sun, 16 Feb 2025 13:51:01 +0100 Subject: [PATCH] Fix release workflow (#79) --- .github/workflows/release.yaml | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml index bb6c653..9f45bc8 100644 --- a/.github/workflows/release.yaml +++ b/.github/workflows/release.yaml @@ -46,7 +46,7 @@ jobs: - name: Upload source distribution as artifact uses: actions/upload-artifact@v4 with: - name: dxtb-sdist + name: ${{ github.event.repository.name }}-sdist path: dist/*.tar.gz wheel: @@ -67,7 +67,7 @@ jobs: - name: Upload wheel as artifact uses: actions/upload-artifact@v4 with: - name: dxtb-wheel + name: ${{ github.event.repository.name }}-wheel path: dist/*.whl upload_test_pypi: @@ -109,7 +109,6 @@ jobs: - name: Download build artifacts uses: actions/download-artifact@v4 with: - name: artifact path: dist - name: Publish to PyPI