Skip to content

Commit cdb0222

Browse files
committed
removing case insensitivity from tag checks for -beta. and -rc.
1 parent 6b0288b commit cdb0222

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

.github/workflows/version_release_workflow.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -52,9 +52,9 @@ jobs:
5252
name: >-
5353
Publish Python 🐍 distribution 📦 to PyPI
5454
if: |
55-
startsWith(toLowerCase(github.ref), 'refs/tags/v') && \
56-
!contains(toLowerCase(github.ref), '-beta.') && \
57-
!contains(toLowerCase(github.ref), '-rc.')
55+
startsWith(github.ref, 'refs/tags/v') && \
56+
!contains(github.ref, '-beta.') && \
57+
!contains(github.ref, '-rc.')
5858
needs:
5959
- build
6060
runs-on: ubuntu-latest

0 commit comments

Comments
 (0)