From f9349de48ec1560e294d99e551c64fc75d4c384e Mon Sep 17 00:00:00 2001 From: Amethyst Reese Date: Sun, 1 Sep 2024 20:36:46 -0700 Subject: [PATCH] Build/publish both sdist and wheel --- .github/workflows/ci.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 352a9dd..3acda5a 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -40,7 +40,7 @@ jobs: - name: Lint run: make lint - sdist: + build: needs: test runs-on: ubuntu-latest steps: @@ -54,7 +54,7 @@ jobs: - name: Install run: make install - name: Build - run: python -m build --sdist + run: python -m build - name: Upload uses: actions/upload-artifact@v3 with: @@ -62,7 +62,7 @@ jobs: path: dist publish: - needs: sdist + needs: build runs-on: ubuntu-latest if: startsWith(github.ref, 'refs/tags/v') permissions: