From 3715da336d5ad2aa57443c295f21a508814f3322 Mon Sep 17 00:00:00 2001 From: Vignesh Rao Date: Fri, 4 Oct 2024 18:29:53 -0500 Subject: [PATCH] Build without any dependencies --- .github/workflows/matrix-publisher.yml | 11 ++++------- 1 file changed, 4 insertions(+), 7 deletions(-) diff --git a/.github/workflows/matrix-publisher.yml b/.github/workflows/matrix-publisher.yml index d626dd78..cde2fa3e 100644 --- a/.github/workflows/matrix-publisher.yml +++ b/.github/workflows/matrix-publisher.yml @@ -44,11 +44,8 @@ jobs: python update-toml.py pyproject.toml "${{ matrix.project_names }}" shell: bash - - name: Echo pyproject.toml - run: cat pyproject.toml + - name: Build the package + run: | + rm -rf dist/ build/ *.egg-info + python -m build shell: bash - - - uses: thevickypedia/pypi-publisher@v3 - with: - dry-run: ${{ env.dry_run }} - token: ${{ secrets.PYPI_TOKEN }}