From 86ecf15d8f196a98c4d3f11b320351ea9b980610 Mon Sep 17 00:00:00 2001 From: Tim Paine Date: Mon, 1 Feb 2021 00:14:03 -0500 Subject: [PATCH] tweak linux check again, allow failure of deploy --- .github/workflows/deploy.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml index 5d7d37fc..8b2c4e70 100644 --- a/.github/workflows/deploy.yml +++ b/.github/workflows/deploy.yml @@ -37,11 +37,11 @@ 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') && matrix.os != 'ubuntu-latest' }} env: TWINE_USERNAME: ${{ secrets.PYPI_UN }} TWINE_PASSWORD: ${{ secrets.PYPI_PW }} run: | - python -m twine upload dist/* --skip-existing + python -m twine upload dist/* --skip-existing || echo "Failed to deploy"