Skip to content

Commit d7d2b39

Browse files
committed
automatic part sanity checking
1 parent 5e49958 commit d7d2b39

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

.github/workflows/deploy.yml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,11 @@ jobs:
4747
git config user.name "github-actions[bot]"
4848
git config user.email "github-actions[bot]@users.noreply.github.com"
4949
git add -A
50-
if git diff --quiet; then
50+
51+
git status --porcelain
52+
git diff --cached --stat
53+
54+
if git diff --cached --quiet; then
5155
echo "No changes to commit."
5256
exit 0
5357
fi

0 commit comments

Comments
 (0)