From 4a206f9366b71663af1a78378155ff703c8636ec Mon Sep 17 00:00:00 2001 From: Mattt Zmuda Date: Mon, 24 Apr 2023 13:31:32 -0700 Subject: [PATCH] Update release workflow to build source and binary distributions Signed-off-by: Mattt Zmuda --- .github/workflows/release.yaml | 13 ++----------- 1 file changed, 2 insertions(+), 11 deletions(-) diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml index 41b5260e..4cd74949 100644 --- a/.github/workflows/release.yaml +++ b/.github/workflows/release.yaml @@ -16,18 +16,9 @@ jobs: with: python-version: "3.10" - name: Install pypa/build - run: >- - python -m - pip install - build - --user + run: python -m pip install build --user - name: Build a package - run: >- - python -m - build - --sdist - --outdir dist/ - . + run: python -m build - name: Publish distribution 📦 to PyPI uses: pypa/gh-action-pypi-publish@release/v1 with: