From fefa8db4efbea3fa8235f0ab8fbb1bfc5821cf1c Mon Sep 17 00:00:00 2001 From: Samuel Colvin Date: Mon, 25 Jul 2022 13:21:42 +0100 Subject: [PATCH] Build source distribution (#176) * add source distribution * move sdist build above wheels build --- .github/workflows/ci.yml | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 37670a81..c7244ff7 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -201,6 +201,13 @@ jobs: - run: pip install -U twine + - name: build sdist + if: ${{ matrix.os == 'ubuntu' && matrix.target == 'x86_64' && matrix.manylinux == 'auto' }} + uses: messense/maturin-action@v1 + with: + command: sdist + args: --out dist + - name: build wheels uses: messense/maturin-action@v1 with: