From c298b8447cc78443432e580738be5654eaa353bb Mon Sep 17 00:00:00 2001 From: Ben Busby Date: Tue, 31 Aug 2021 09:18:07 -0600 Subject: [PATCH] Split PyPI action into separate jobs --- .github/workflows/pypi.yml | 31 +++++++++++++++++++++++++++---- 1 file changed, 27 insertions(+), 4 deletions(-) diff --git a/.github/workflows/pypi.yml b/.github/workflows/pypi.yml index decd4d5..c0d398f 100644 --- a/.github/workflows/pypi.yml +++ b/.github/workflows/pypi.yml @@ -3,8 +3,8 @@ name: pypi on: push jobs: - build-and-publish: - name: Build and publish to PyPI and TestPyPI + publish-test: + name: Build and publish to TestPyPI runs-on: ubuntu-latest steps: - uses: actions/checkout@v2 @@ -26,13 +26,36 @@ jobs: --wheel --outdir dist/ . + env: + DEV_BUILD: 1 - name: Publish distribution to TestPyPI uses: pypa/gh-action-pypi-publish@master with: password: ${{ secrets.TEST_PYPI_API_TOKEN }} repository_url: https://test.pypi.org/legacy/ - env: - DEV_BUILD: 1 + publish: + name: Build and publish to PyPI + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v2 + - name: Set up Python 3.9 + uses: actions/setup-python@v1 + with: + python-version: 3.9 + - name: Install pypa/build + run: >- + python -m + pip install + build + --user + - name: Build binary wheel and source tarball + run: >- + python -m + build + --sdist + --wheel + --outdir dist/ + . - name: Publish distribution to PyPI if: startsWith(github.ref, 'refs/tags') uses: pypa/gh-action-pypi-publish@master