We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e71eeca commit cf06d52Copy full SHA for cf06d52
.github/workflows/build.yml
@@ -82,9 +82,9 @@ jobs:
82
- name: Verify this is not a dev version
83
shell: bash
84
run: |
85
- ls dist/*dev*.whl
+ ls dist/*.whl
86
echo $GITHUB_REF
87
- if [[ $(ls dist/*.whl) == *dev* ]]; then echo dist/*dev*.whl; exit 1; fi
+ if [[ $(ls dist/*.whl) == *dev* ]]; then echo dist/*.whl; exit 1; fi
88
if [[ "$GITHUB_REF" == *"master"* ]]; then echo $GITHUB_REF; exit 1; fi
89
90
- name: Publish distribution to PyPI
0 commit comments