From d7ae009c56ff028cdd0ffc1b73e80fe977a786b4 Mon Sep 17 00:00:00 2001 From: Tim Paine <3105306+timkpaine@users.noreply.github.com> Date: Tue, 7 May 2024 23:47:07 -0400 Subject: [PATCH] fix deployment scoping --- .github/workflows/deploy.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml index 7404812..e3a629b 100644 --- a/.github/workflows/deploy.yml +++ b/.github/workflows/deploy.yml @@ -50,7 +50,7 @@ jobs: python -m twine check dist/* - name: Publish distribution 📦 to PyPI - if: ${{ startsWith(github.ref, 'refs/tags') && matrix.os != 'ubuntu-latest' }} + if: ${{ startsWith(github.ref, 'refs/tags') }} env: TWINE_USERNAME: ${{ secrets.PYPI_UN }} TWINE_PASSWORD: ${{ secrets.PYPI_PW }}