Skip to content

Commit

Permalink
Fix uploading symbols
Browse files Browse the repository at this point in the history
  • Loading branch information
peace-maker committed Dec 15, 2024
1 parent ec50291 commit 02c9518
Showing 1 changed file with 5 additions and 6 deletions.
11 changes: 5 additions & 6 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -158,13 +158,12 @@ jobs:
working-directory: sourcetvmanager/build
shell: bash
run: |
for f in sourcetvmanager.ext.2.*; do
if [ -f "$f/$f.pdb" ]; then
dump_syms.exe $f/$f.pdb > $f.syms
else
dump_syms $f/$f.so > $f.syms
for f in $(find sourcetvmanager.ext.2.* -type f -print | grep \/sourcetvmanager\.ext\.2\.*\.); do
if ! [[ $f == *.so || $f == *.pdb ]]; then
continue
fi
curl --data-binary @$f.syms https://crash.limetech.org/symbols/submit
dump_syms $f > $(basename $f).syms
curl --data-binary @$(basename $f).syms https://crash.limetech.org/symbols/submit
done
- name: Uploading package
Expand Down

0 comments on commit 02c9518

Please sign in to comment.