Compare commits

...

1 Commits

Author SHA1 Message Date
DevTekVE
a233c3949c Enable verbose Git logging in push-changes workflow step
Add `GIT_TRACE=2` and `GIT_CURL_VERBOSE=1` to enhance Git command logging during the push-changes step. This provides detailed trace and curl debugging information for troubleshooting CI/CD issues.
2025-03-06 15:34:26 +01:00

View File

@@ -116,6 +116,8 @@ jobs:
- name: Push changes if there are diffs
id: push-changes # Add an id so we can reference this step
run: |
GIT_TRACE=2
GIT_CURL_VERBOSE=1
TARGET_BRANCH="${{ inputs.target_branch || env.DEFAULT_TARGET_BRANCH }}"
# Fetch the latest from remote