We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent cd47a09 commit 641323fCopy full SHA for 641323f
.github/workflows/ci.yml
@@ -27,12 +27,9 @@ jobs:
27
- name: Build
28
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
+ - name: Show build errors
31
if: failure()
32
- uses: actions/upload-artifact@v4
33
- with:
34
- name: build-log
35
- path: /tmp/build-output.txt
+ run: grep -E "error CS|Error\(s\)|error :" /tmp/build-output.txt || cat /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