Skip to content

Commit 7b0cb99

Browse files
committed
Add debug step to list app directory contents
This commit adds a debugging step to the `deployRelease`, `deployBeta`, and `deployFirebase-internal` jobs in the GitHub Actions workflow. This new step lists the contents of the `app` directory, which can be helpful in troubleshooting issues related to file presence or permissions during the deployment process.
1 parent ff21e0c commit 7b0cb99

1 file changed

Lines changed: 9 additions & 0 deletions

File tree

.github/workflows/android.yml

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -215,6 +215,9 @@ jobs:
215215
name: release-aab
216216
path: app/build/outputs/bundle/release
217217

218+
- name: Debug Secrets
219+
run: ls -la app
220+
218221
- run: bundle exec fastlane deployRelease
219222

220223
deploy-beta:
@@ -246,6 +249,9 @@ jobs:
246249
name: release-aab
247250
path: app/build/outputs/bundle/release
248251

252+
- name: Debug Secrets
253+
run: ls -la app
254+
249255
- run: bundle exec fastlane deployBeta
250256

251257
deploy-firebase-internal:
@@ -277,4 +283,7 @@ jobs:
277283
name: release-aab
278284
path: app/build/outputs/bundle/release
279285

286+
- name: Debug Secrets
287+
run: ls -la app
288+
280289
- run: bundle exec fastlane deployFirebase --verbose

0 commit comments

Comments
 (0)