Skip to content

Commit 6f7acbb

Browse files
authored
Enhance debugging steps in PHP workflow
Added debug steps to list directory contents and current paths.
1 parent dd802b7 commit 6f7acbb

1 file changed

Lines changed: 9 additions & 1 deletion

File tree

.github/workflows/php.yml

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -90,18 +90,26 @@ jobs:
9090
- 30
9191
steps:
9292
- uses: actions/checkout@v5
93-
- name: Debug info
9493
# rm /var/www/html/apps/solid/
9594
# cp -r "${GITHUB_WORKSPACE}" /var/www/html/apps/
95+
- continue-on-error: true
9696
run: |
9797
echo " =====> /"
9898
ls -lA /
99+
- continue-on-error: true
100+
run: |
99101
echo " =====> /var/www/"
100102
ls -lA /var/www/
103+
- continue-on-error: true
104+
run: |
101105
echo " =====> /var/www/html/"
102106
ls -lA /var/www/html/
107+
- continue-on-error: true
108+
run: |
103109
echo " =====> PWD:'$PWD'"
104110
ls -lA "$PWD"
111+
- continue-on-error: true
112+
run: |
105113
echo " =====> GITHUB_WORKSPACE:'${GITHUB_WORKSPACE}'"
106114
ls -lA "$GITHUB_WORKSPACE"
107115
- name: Install and Cache Composer dependencies

0 commit comments

Comments
 (0)