diff options
author | Signal Linden <signal@lindenlab.com> | 2024-08-13 12:12:48 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-08-13 12:12:48 -0700 |
commit | 8ce3323269d95f54e2b768c4c5aa154d4afbbb6b (patch) | |
tree | 78eed027e348f85a8ac2a2571019d7a420b460c4 /.github/workflows/build.yaml | |
parent | 3cd1500801dfb0fba4a00a7162148fc8a60a1726 (diff) |
CI: Upload ReleaseOS app (#2252)
Upload the built app on ReleaseOS builds. Not sure why we wouldn't want this.
Diffstat (limited to '.github/workflows/build.yaml')
-rw-r--r-- | .github/workflows/build.yaml | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/.github/workflows/build.yaml b/.github/workflows/build.yaml index 53bfbc2c0a..a422c73391 100644 --- a/.github/workflows/build.yaml +++ b/.github/workflows/build.yaml @@ -253,7 +253,7 @@ jobs: echo "artifact=$RUNNER_OS$cfg_suffix" >> $GITHUB_OUTPUT - name: Upload executable - if: matrix.configuration == 'Release' && steps.build.outputs.viewer_app + if: steps.build.outputs.viewer_app uses: actions/upload-artifact@v4 with: name: "${{ steps.build.outputs.artifact }}-app" @@ -264,7 +264,6 @@ jobs: # artifact for that too. - name: Upload symbol file uses: actions/upload-artifact@v4 - if: matrix.configuration == 'Release' with: name: "${{ steps.build.outputs.artifact }}-symbols" path: ${{ steps.build.outputs.symbolfile }} |