Skip to content

Commit 4c196b3

Browse files
committed
fix(gha): debug submodules
logging submodules dir and status
1 parent 8f45fa9 commit 4c196b3

File tree

1 file changed

+13
-0
lines changed

1 file changed

+13
-0
lines changed

.github/workflows/ci-default.yml

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -44,6 +44,19 @@ jobs:
4444
git submodule foreach git fetch --all
4545
git submodule foreach git reset --hard origin/HEAD
4646
47+
- name: Debug submodules
48+
run: |
49+
echo "Current directory:"
50+
pwd
51+
echo "\nList .gitmodules content:"
52+
cat .gitmodules
53+
echo "\nList lib directory:"
54+
ls -la lib/
55+
echo "\nList openzeppelin directory if it exists:"
56+
ls -la lib/openzeppelin-contracts-upgradeable/ || echo "Directory doesn't exist"
57+
echo "\nGit submodule status:"
58+
git submodule status
59+
4760
- name: Debug directory structure
4861
run: |
4962
ls -la lib/openzeppelin-contracts-upgradeable/contracts/utils/cryptography/

0 commit comments

Comments
 (0)