From 6bc1ffa59970f0fde5ca471e5027b360e3cb4582 Mon Sep 17 00:00:00 2001 From: alves Date: Fri, 30 Jan 2026 14:43:26 +0800 Subject: [PATCH] fix windows pdb not upload sentry server bug. --- .github/workflows/build_orca.yml | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/.github/workflows/build_orca.yml b/.github/workflows/build_orca.yml index af9fd9b5c7..44e6b93bfe 100644 --- a/.github/workflows/build_orca.yml +++ b/.github/workflows/build_orca.yml @@ -612,3 +612,14 @@ jobs: asset_name: orca_custom_preset_tests.zip asset_content_type: application/octet-stream max_releases: 1 + + upload_symbols: + name: Upload Windows PDB to Sentry + needs: [build_orca] + if: ${{ !cancelled() && needs.build_orca.result == 'success' && inputs.os == 'windows-latest' }} + uses: ./.github/workflows/sentry_cli.yml + with: + os: ${{ inputs.os }} + pdb-artifact-name: PDB + release: ${{ needs.build_orca.outputs.release || github.sha }} + secrets: inherit