From 24113c81eca2c5fa90f87a6e613f6b296bc082fd Mon Sep 17 00:00:00 2001 From: Damien Elmes Date: Thu, 30 Apr 2020 13:51:20 +1000 Subject: [PATCH] temporarily disable pypi upload --- .github/workflows/checks.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/checks.yml b/.github/workflows/checks.yml index 28cc1ab37..e8a67ef69 100644 --- a/.github/workflows/checks.yml +++ b/.github/workflows/checks.yml @@ -272,7 +272,7 @@ jobs: path: dist - name: Upload to PyPi Windows - if: matrix.BUILD_TYPE == 'build' && startsWith(github.ref, 'refs/tags/') && matrix.os == 'windows-latest' + if: matrix.BUILD_TYPE == 'disabled' && startsWith(github.ref, 'refs/tags/') && matrix.os == 'windows-latest' shell: cmd env: TWINE_PASSWORD: ${{ secrets.TWINE_PASSWORD }} @@ -284,7 +284,7 @@ jobs: twine upload --non-interactive --skip-existing --verbose dist/* - name: Upload to PyPi Linux/Mac OS - if: matrix.BUILD_TYPE == 'build' && startsWith(github.ref, 'refs/tags/') && ( matrix.os == 'ubuntu-latest' || matrix.os == 'macos-latest' ) + if: matrix.BUILD_TYPE == 'disabled' && startsWith(github.ref, 'refs/tags/') && ( matrix.os == 'ubuntu-latest' || matrix.os == 'macos-latest' ) env: TWINE_PASSWORD: ${{ secrets.TWINE_PASSWORD }} TWINE_USERNAME: __token__