From d311432c7bfd879ab77574ad96323bc19479afcd Mon Sep 17 00:00:00 2001 From: Jeff Newman Date: Tue, 23 Aug 2022 18:19:48 -0500 Subject: [PATCH] build wheel --- .github/workflows/test-deploy.yml | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/.github/workflows/test-deploy.yml b/.github/workflows/test-deploy.yml index d905a8aca..b17b058a5 100644 --- a/.github/workflows/test-deploy.yml +++ b/.github/workflows/test-deploy.yml @@ -16,16 +16,18 @@ jobs: - uses: actions/checkout@v3 with: fetch-depth: 0 - - uses: actions/setup-python@v4 name: Install Python with: python-version: "3.9" - - name: Install dependencies run: | python -m pip install --upgrade pip python -m pip install build setuptools setuptools-scm wheel twine check-manifest + - name: Build tarball and wheels + run: | + git clean -xdf + python -m build --sdist --wheel . - name: Check built artifacts run: | python -m twine check dist/*