From 23b22dfc70d1ed524d9658adacea2851e9a82fee Mon Sep 17 00:00:00 2001 From: Benex254 Date: Wed, 24 Jul 2024 17:27:55 +0300 Subject: [PATCH] feat: exclude the wheel distribution since its platform dependent --- .github/workflows/build.yml | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 99ed257..7d40d7e 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -28,7 +28,9 @@ jobs: uses: actions/upload-artifact@v4 with: name: distribution - path: dist - retention-days: 5 + path: | + dist + !dist/*.whl + retention-days: 14 # - name: Run the automated tests (for example) # run: poetry run pytest -v