Skip to content

Commit ae3f6fb

Browse files
committed
Use -qE for | to work
1 parent cb694b1 commit ae3f6fb

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/installer.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -102,7 +102,7 @@ jobs:
102102
- name: Detect changes to installer README
103103
id: changed-readme
104104
run: |
105-
if git diff --name-only HEAD~1.. | grep -q "^installer/README.md$|^deploy/scripts/.*install-combine.*$"; then
105+
if git diff --name-only HEAD~1.. | grep -qE "^installer/README.md$|^deploy/scripts/.*install-combine.*$"; then
106106
echo "changed=true" >> $GITHUB_OUTPUT
107107
else
108108
echo "changed=false" >> $GITHUB_OUTPUT

0 commit comments

Comments
 (0)