Skip to content

Commit 4bfd839

Browse files
committed
debug cli ref
Signed-off-by: Sylwester Piskozub <sylwesterpiskozub@gmail.com>
1 parent d542466 commit 4bfd839

1 file changed

Lines changed: 14 additions & 0 deletions

File tree

.github/workflows/test.yml

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -58,6 +58,20 @@ jobs:
5858
working-directory: app/${{ matrix.app }}
5959
tidy: true
6060

61+
# Debug: Show what files changed after go generate
62+
- name: "Debug: Show git diff after go generate"
63+
if: ${{ matrix.app == 'cli' }}
64+
run: |
65+
echo "=== Git status ==="
66+
git status --porcelain
67+
echo "=== Git diff for cli-reference.mdx ==="
68+
git diff documentation/cli-reference.mdx || echo "No diff"
69+
echo "=== File permissions ==="
70+
ls -l documentation/cli-reference.mdx
71+
echo "=== Git ls-files permissions ==="
72+
git ls-files -s documentation/cli-reference.mdx
73+
working-directory: app/cli
74+
6175
# Check that the generated API code is up to date
6276
# We install the tools and run the protoc generation before checking differences
6377
- name: "Check all API generated code is checked in"

0 commit comments

Comments
 (0)