We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6089944 commit cd47a09Copy full SHA for cd47a09
.github/workflows/ci.yml
@@ -25,7 +25,14 @@ jobs:
25
run: dotnet restore src/HealthNerd.Wasm/HealthNerd.Wasm.csproj
26
27
- name: Build
28
- run: dotnet build src/HealthNerd.Wasm/HealthNerd.Wasm.csproj -c Release --no-restore -v normal
+ run: dotnet build src/HealthNerd.Wasm/HealthNerd.Wasm.csproj -c Release --no-restore -v normal 2>&1 | tee /tmp/build-output.txt; exit ${PIPESTATUS[0]}
29
+
30
+ - name: Upload build log
31
+ if: failure()
32
+ uses: actions/upload-artifact@v4
33
+ with:
34
+ name: build-log
35
+ path: /tmp/build-output.txt
36
37
- name: Publish (dry-run to verify WASM output)
38
run: dotnet publish src/HealthNerd.Wasm/HealthNerd.Wasm.csproj -c Release --no-restore -o ./publish
0 commit comments