From 9c4858af6795f7c9458d21f80a388dc375f0489f Mon Sep 17 00:00:00 2001 From: Clint Valentine Date: Fri, 20 Sep 2024 08:40:42 -0700 Subject: [PATCH] chore: on publish only upload prymer wheels (#33) --- .github/workflows/wheels.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/wheels.yml b/.github/workflows/wheels.yml index c2815b0..c81da25 100644 --- a/.github/workflows/wheels.yml +++ b/.github/workflows/wheels.yml @@ -24,11 +24,11 @@ jobs: python-version: ${{ matrix.python }} - name: Build wheels - run: pip wheel -w wheelhouse . + run: pip wheel --no-deps -w wheelhouse . - name: Upload wheels uses: actions/upload-artifact@v4 with: name: prymer-wheels-${{ matrix.python }} - path: ./wheelhouse/*.whl + path: ./wheelhouse/prymer*.whl if-no-files-found: error