Skip to content

Commit f748bf0

Browse files
committed
fix stubs upload conditionals
1 parent 50a8e99 commit f748bf0

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/build.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -133,8 +133,8 @@ jobs:
133133
TWINE_PASSWORD: ${{ secrets.pypi_password }}
134134
run: |
135135
# setup.py sdist was run by 'make stubs'
136-
if [ -z "$TWINE_USERNAME" ] || echo "Uploading dev release to PyPi"
137-
if [ -z "$TWINE_USERNAME" ] || twine upload circuitpython-stubs/dist/*
136+
[ -z "$TWINE_USERNAME" ] || echo "Uploading dev release to PyPi"
137+
[ -z "$TWINE_USERNAME" ] || twine upload circuitpython-stubs/dist/*
138138
139139
mpy-cross-mac:
140140
runs-on: macos-10.15

0 commit comments

Comments
 (0)