Skip to content

Commit 47abbf9

Browse files
authored
Add directory listing for client/public in deploy-staging.yml for debugging
- Added a step to list the contents of client/public in the GitHub Actions workflow to confirm accessibility of necessary files. - Also included root directory listing to check the overall project structure during workflow execution. - This update helps identify any issues with file paths or missing files, ensuring that the build process can locate index.html and other required files. This change aims to resolve build errors by providing clearer insights into the directory structure within the GitHub Actions environment.
1 parent 1a3c3d0 commit 47abbf9

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

.github/workflows/deploy-staging.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,9 @@ jobs:
1616
- name: List root directory contents for debugging
1717
run: ls -R
1818

19+
- name: List client/public directory contents for debugging
20+
run: ls client/public
21+
1922
- name: Set up Node.js
2023
uses: actions/setup-node@v3
2124
with:

0 commit comments

Comments
 (0)