Skip to content

Commit 1acc859

Browse files
author
Guy Davenport
committed
corrected if statement
1 parent 40a0237 commit 1acc859

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/generate-schema.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ jobs:
2525
- name: Check Branch with Regex
2626
id: check-tag
2727
run: |
28-
if [[ "${{ github.ref }}" =~ ^refs/heads/brapi-V[0-9]+\.[0-9]+$ ]]; then
28+
if [ "${{ github.ref }}" =~ ^refs/heads/brapi-V[0-9]+\.[0-9]+$ ]; then
2929
echo "commit=true" >> $GITHUB_ENV
3030
else
3131
echo "commit=false" >> $GITHUB_ENV

0 commit comments

Comments
 (0)