Skip to content
This repository was archived by the owner on Oct 18, 2024. It is now read-only.

Commit c4630fc

Browse files
committed
chore(workflow): upload debug symbols without copying
1 parent 04a30df commit c4630fc

File tree

1 file changed

+1
-7
lines changed

1 file changed

+1
-7
lines changed

.github/workflows/build.yml

Lines changed: 1 addition & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -63,12 +63,6 @@ jobs:
6363
PublishToMaven: ${{ github.ref == 'refs/heads/main' }}
6464
TS_INCLUDE_DBG_SYMS_IN_APK: true
6565

66-
- name: Collect debug symbols
67-
run: |
68-
rm -rf ./build/debug_info
69-
mkdir -p ./build/debug_info
70-
find **/ts_debug_symbols/release/out -mindepth 1 -maxdepth 1 -exec cp -r {} ./build/debug_info/ \;
71-
7266
- name: Upload APK
7367
uses: actions/upload-artifact@v3
7468
with:
@@ -79,7 +73,7 @@ jobs:
7973
uses: actions/upload-artifact@v3
8074
with:
8175
name: debug-symbols
82-
path: build/debug_info/*.debug_info
76+
path: '**/ts_debug_symbols/release/out'
8377

8478
unit_test_debug:
8579
name: Run local tests

0 commit comments

Comments
 (0)