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 9087a90 commit 185967dCopy full SHA for 185967d
.github/workflows/dotnet-core.yml
@@ -34,6 +34,12 @@ jobs:
34
'src/Elmah.Io.AspNetCore.HealthChecks/Elmah.Io.AspNetCore.HealthChecks.csproj'
35
'src/Elmah.Io.AspNetCore.TagHelpers/Elmah.Io.AspNetCore.TagHelpers.csproj'
36
37
+ - name: Get logs from Docker container
38
+ run: |
39
+ container_id=$(docker ps -l -q)
40
+ docker cp $container_id:/tmp/action-log.txt action-log.txt || echo "Log file not found"
41
+ cat action-log.txt || echo "No log output available"
42
+
43
- name: Build
44
run: dotnet build --configuration Release --no-restore
45
0 commit comments