We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6b0288b commit cdb0222Copy full SHA for cdb0222
1 file changed
.github/workflows/version_release_workflow.yml
@@ -52,9 +52,9 @@ jobs:
52
name: >-
53
Publish Python 🐍 distribution 📦 to PyPI
54
if: |
55
- startsWith(toLowerCase(github.ref), 'refs/tags/v') && \
56
- !contains(toLowerCase(github.ref), '-beta.') && \
57
- !contains(toLowerCase(github.ref), '-rc.')
+ startsWith(github.ref, 'refs/tags/v') && \
+ !contains(github.ref, '-beta.') && \
+ !contains(github.ref, '-rc.')
58
needs:
59
- build
60
runs-on: ubuntu-latest
0 commit comments