From 91a736185322e009f8b444d44b17ebf9b45f6e44 Mon Sep 17 00:00:00 2001 From: Felicio Cassalho <61760479+felicio93@users.noreply.github.com> Date: Mon, 28 Apr 2025 14:22:35 -0400 Subject: [PATCH] Update release.yml change the artifact name (both were named build before) --- .github/workflows/release.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index f5ba9fd..58a2137 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -30,7 +30,7 @@ jobs: - name: save wheel uses: actions/upload-artifact@v4 with: - name: build + name: build-wheel-${{ matrix.python-version }} path: ./dist/*.whl build_sdist: name: package source @@ -47,7 +47,7 @@ jobs: - name: save source package uses: actions/upload-artifact@v4 with: - name: build + name: build-sdist path: ./dist/*.tar.gz upload_pypi: if: ${{ github.event_name == 'release' }}