Merge pull request #532 from fheinecke/master

Added logging to diagnose CI build failures
This commit is contained in:
Muneeb Aijaz
2023-10-25 17:32:21 +05:00
committed by GitHub
+9
View File
@@ -219,6 +219,15 @@ jobs:
commit_email: stakater@gmail.com
# Commit back changes
- name: Log info about `.git` directory permissions
run: |
# Debug logging
echo "Disk usage: "
df -H
echo ".git files not owned by current user or current group:"
find .git ! -user $(id -u) -o ! -group $(id -g) | xargs ls -lah
- name: Commit files
run: |
git config --local user.email "stakater@gmail.com"