Skip to content

Commit 8f5afb1

Browse files
committed
Debug directory listings
This commit adds directory listings to the `android.yml` workflow for debugging purposes. Specifically, it lists the contents of the root directory and the `app/` directory at various stages of the build process. This change aims to help identify potential issues with file paths or missing files during the build.
1 parent 952da11 commit 8f5afb1

File tree

1 file changed

+13
-6
lines changed

1 file changed

+13
-6
lines changed

.github/workflows/android.yml

Lines changed: 13 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -61,12 +61,11 @@ jobs:
6161
- name: Create Google Service Account JSON
6262
run: echo "${{ secrets.GOOGLE_PLAY_JSON }}" | base64 -d > app/${{ env.GOOGLE_PLAY_JSON }}
6363

64-
- name: Debug Check if service account JSON exists
64+
- name: Debug directory
6565
run: |
66-
echo "Listing app/ folder:"
66+
ls -l
67+
echo ""
6768
ls -l app/
68-
echo "Showing first 10 lines of the JSON file:"
69-
head -n 10 app/${{ env.GOOGLE_PLAY_JSON }}
7069
7170
- name: Upload Secrets
7271
uses: actions/upload-artifact@v4
@@ -113,7 +112,11 @@ jobs:
113112
with:
114113
name: secrets
115114

116-
- run: ls -la app/
115+
- name: Debug directory
116+
run: |
117+
ls -l
118+
echo ""
119+
ls -l app/
117120
118121
- name: Write local.properties
119122
run: |
@@ -221,7 +224,11 @@ jobs:
221224
name: release-aab
222225
path: app/build/outputs/bundle/release
223226

224-
- run: ls -la app/
227+
- name: Debug directory
228+
run: |
229+
ls -l
230+
echo ""
231+
ls -l app/
225232
226233
- run: bundle exec fastlane deployRelease
227234

0 commit comments

Comments
 (0)