Skip to content

Commit 8f76f12

Browse files
committed
Update path exclusion in generate action check
Signed-off-by: Yuki Kishimoto <[email protected]>
1 parent f15e8ba commit 8f76f12

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/actions/generate/action.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ runs:
4646
env:
4747
EXCLUDE: ${{ inputs.platform == 'android' && 'ios' || 'android' }}
4848
run: |
49-
if [[ -n "$(git status --porcelain | grep -v ". $EXCLUDE" | grep -v example/ios/Podfile.lock)" ]]; then
49+
if [[ -n "$(git status --porcelain | grep -v ". $EXCLUDE" | grep -v example/)" ]]; then
5050
>&2 echo "Found unexpected changes in repository after generating"
5151
git status --short
5252
git diff

0 commit comments

Comments
 (0)