From 4c30dd063ce38c72b80b2703e9c639c816ea97b2 Mon Sep 17 00:00:00 2001 From: Hammad Mohiuddin Date: Wed, 3 Apr 2024 11:11:42 -0700 Subject: [PATCH] Adding sdist file to release as well --- .github/workflows/build-and-release-whls.yaml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/build-and-release-whls.yaml b/.github/workflows/build-and-release-whls.yaml index 1ae9e3c..4201029 100644 --- a/.github/workflows/build-and-release-whls.yaml +++ b/.github/workflows/build-and-release-whls.yaml @@ -40,12 +40,12 @@ jobs: - name: Upload artifacts uses: actions/upload-artifact@v3 with: - path: dist/*.whl + path: dist/* - - name: Upload Wheel Files to Release + - name: Upload wheel and sdist files to release uses: softprops/action-gh-release@v2 with: - files: dist/*.whl + files: dist/* env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}