diff options
author | Brad Linden <46733234+brad-linden@users.noreply.github.com> | 2024-08-13 13:42:52 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-08-13 13:42:52 -0700 |
commit | 2921deed78af5751b3788aa8d8e1297306b2abab (patch) | |
tree | a3d13d1a2f2c1f13e3fe878c9368f045371974ff /.github/workflows | |
parent | 8ce3323269d95f54e2b768c4c5aa154d4afbbb6b (diff) |
Skip windows symbol upload if there was no Release config build. (#2280)
Diffstat (limited to '.github/workflows')
-rw-r--r-- | .github/workflows/build.yaml | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/.github/workflows/build.yaml b/.github/workflows/build.yaml index a422c73391..a128bfdbe7 100644 --- a/.github/workflows/build.yaml +++ b/.github/workflows/build.yaml @@ -353,6 +353,7 @@ jobs: BUGSPLAT_USER: ${{ secrets.BUGSPLAT_USER }} BUGSPLAT_PASS: ${{ secrets.BUGSPLAT_PASS }} needs: build + if: needs.build.outputs.configuration == 'Release' runs-on: ubuntu-latest steps: - name: Download viewer exe |