diff options
Diffstat (limited to '.github')
-rw-r--r-- | .github/workflows/build.yaml | 15 |
1 files changed, 14 insertions, 1 deletions
diff --git a/.github/workflows/build.yaml b/.github/workflows/build.yaml index 901cd092af..a901e33ec1 100644 --- a/.github/workflows/build.yaml +++ b/.github/workflows/build.yaml @@ -256,7 +256,7 @@ jobs: needs: build runs-on: windows steps: - - name: Post windows symbols + - name: Post Windows symbols uses: secondlife/viewer-post-bugsplat-windows@main with: username: ${{ secrets.BUGSPLAT_USER }} @@ -265,6 +265,19 @@ jobs: channel: ${{ needs.build.outputs.viewer_channel }} version: ${{ needs.build.outputs.viewer_version }} + post-mac-symbols: + needs: build + runs-on: macos + steps: + - name: Post Mac symbols + uses: secondlife/viewer-post-bugsplat-mac@main + with: + username: ${{ secrets.BUGSPLAT_USER }} + password: ${{ secrets.BUGSPLAT_PASS }} + database: "SecondLife_Viewer_2018" + channel: ${{ needs.build.outputs.viewer_channel }} + version: ${{ needs.build.outputs.viewer_version }} + release: needs: build runs-on: ubuntu-latest |