Skip to content

Commit 1a3c3d0

Browse files
authored
Add debugging step to deploy-staging.yml to verify directory structure
- Added a step to list the root directory contents in the GitHub Actions workflow to verify that the client directory and necessary files are accessible. - Ensures that the workflow can locate client/public/index.html and other essential files during the build process. - This update helps identify issues with directory paths and confirms the presence of required files in the GitHub Actions environment. This change aims to resolve build issues by providing more insight into the directory structure during deployment.
1 parent bd1db19 commit 1a3c3d0

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
@@ -13,6 +13,9 @@ jobs:
1313
- name: Checkout code
1414
uses: actions/checkout@v3
1515

16+
- name: List root directory contents for debugging
17+
run: ls -R
18+
1619
- name: Set up Node.js
1720
uses: actions/setup-node@v3
1821
with:

0 commit comments

Comments
 (0)