We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b1d3972 commit 5ba1e2bCopy full SHA for 5ba1e2b
.github/workflows/build.yml
@@ -112,9 +112,11 @@ jobs:
112
run: dotnet restore Sentry-CI-Build-${{ runner.os }}.slnf --nologo
113
114
- name: Build
115
+ id: build
116
run: dotnet build Sentry-CI-Build-${{ runner.os }}.slnf -c Release --no-restore --nologo -v:minimal -flp:logfile=build.log -p:CopyLocalLockFileAssemblies=true -bl:build.binlog
117
118
- name: Upload build logs
119
+ if: ${{ steps.build.outcome != 'skipped' }}
120
uses: actions/upload-artifact@v4
121
with:
122
name: ${{ runner.os }}-build-logs
0 commit comments