From f748bf0c6796c2a656e58002126f6a07875cb83a Mon Sep 17 00:00:00 2001 From: Dan Halbert Date: Fri, 16 Jul 2021 23:26:19 -0400 Subject: [PATCH] fix stubs upload conditionals --- .github/workflows/build.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index e8fc12083f..2a88afd918 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -133,8 +133,8 @@ jobs: TWINE_PASSWORD: ${{ secrets.pypi_password }} run: | # setup.py sdist was run by 'make stubs' - if [ -z "$TWINE_USERNAME" ] || echo "Uploading dev release to PyPi" - if [ -z "$TWINE_USERNAME" ] || twine upload circuitpython-stubs/dist/* + [ -z "$TWINE_USERNAME" ] || echo "Uploading dev release to PyPi" + [ -z "$TWINE_USERNAME" ] || twine upload circuitpython-stubs/dist/* mpy-cross-mac: runs-on: macos-10.15