There was an error while loading. Please reload this page.
1 parent 8282ef9 commit fd5d99fCopy full SHA for fd5d99f
scripts/commit.sh
@@ -28,5 +28,17 @@ if [ -n "${untracked_files+x}" ]; then
28
git add -v $untracked_files
29
fi
30
31
+# Debug in GitHub Actions
32
+set +u
33
+if [ -n "${CI+x}" ]; then
34
+ echo "::group::status"
35
+ git status
36
+ echo "::endgroup::"
37
+ echo "::group::diff"
38
+ git diff
39
40
+fi
41
+set -u
42
+
43
# Commit only if there is any cached file
44
git diff-index --cached --quiet HEAD || { git add -v $extra_files; git commit -vm "Update translations"; }
0 commit comments