From d9c3edfb121b468530fe464861fb99bdd96dc376 Mon Sep 17 00:00:00 2001 From: mkinney Date: Fri, 25 Feb 2022 22:06:27 -0800 Subject: [PATCH] Update release.yml --- .github/workflows/release.yml | 50 +++++++++++++++++------------------ 1 file changed, 25 insertions(+), 25 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index a42f4c0..b356c70 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -45,35 +45,35 @@ jobs: env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} - - name: Checkout - uses: actions/checkout@v2 + - name: Checkout + uses: actions/checkout@v2 - - name: Set up Python 3.9 - uses: actions/setup-python@v2 - with: - python-version: 3.9 + - name: Set up Python 3.9 + uses: actions/setup-python@v2 + with: + python-version: 3.9 - - name: Install pypa/build - run: >- - python -m - pip install - build - --user + - name: Install pypa/build + run: >- + python -m + pip install + build + --user - - name: Build a binary wheel and a source tarball - run: >- - python -m - build - --sdist - --wheel - --outdir dist/ - . + - name: Build a binary wheel and a source tarball + run: >- + python -m + build + --sdist + --wheel + --outdir dist/ + . - - name: Publish to PyPI - uses: pypa/gh-action-pypi-publish@master - with: - user: __token__ - password: ${{ secrets.PYPI_API_TOKEN }} + - name: Publish to PyPI + uses: pypa/gh-action-pypi-publish@master + with: + user: __token__ + password: ${{ secrets.PYPI_API_TOKEN }} build-and-publish-mac: