diff options
| author | Roxie Linden <roxie@lindenlab.com> | 2024-08-07 19:09:19 -0700 | 
|---|---|---|
| committer | Roxie Linden <roxie@lindenlab.com> | 2024-08-07 19:09:19 -0700 | 
| commit | 60003cf077866401a809905474d3369c7795109a (patch) | |
| tree | 0ec2849bc4b0b1608a1448205088e806836018a2 | |
| parent | 530bc2975315240f6f5dda753b48790364a6312b (diff) | |
include viewer exe in uploaded symbols
| -rw-r--r-- | .github/workflows/build.yaml | 8 | 
1 files changed, 6 insertions, 2 deletions
| diff --git a/.github/workflows/build.yaml b/.github/workflows/build.yaml index ecd3f22a35..72cdf01634 100644 --- a/.github/workflows/build.yaml +++ b/.github/workflows/build.yaml @@ -373,6 +373,11 @@ jobs:      needs: build      runs-on: ubuntu-latest      steps: +      - name: Download viewer exe +        uses: actions/download-artifact@v4 +        with: +          name: Windows-app +          path: _artifacts        - name: Download Windows Symbols          if: env.BUGSPLAT_USER && env.BUGSPLAT_PASS          uses: actions/download-artifact@v4 @@ -382,7 +387,6 @@ jobs:          if: env.BUGSPLAT_USER && env.BUGSPLAT_PASS          shell: bash          run: | -          mkdir _artifacts            tar -xJf "${{ needs.build.outputs.viewer_channel }}.sym.tar.xz" -C _artifacts        - name: Post Windows symbols          if: env.BUGSPLAT_USER && env.BUGSPLAT_PASS @@ -394,7 +398,7 @@ jobs:            application: ${{ needs.build.outputs.viewer_channel }}            version: ${{ needs.build.outputs.viewer_version }}            directory: _artifacts -          files: "**/*.pdb" +          files: "**/{SecondLifeViewer.exe,*.pdb}"    post-mac-symbols:      env: | 
