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 99dabc4 commit 41ab655Copy full SHA for 41ab655
scripts/main.ps1
@@ -99,6 +99,21 @@ process {
99
Get-GithubEventData | Format-List
100
}
101
102
+ LogGroup ' - Runner Info' {
103
+ [pscustomobject]@{
104
+ Name = $env:RUNNER_NAME
105
+ OS = $env:RUNNER_OS
106
+ Arch = $env:RUNNER_ARCH
107
+ Environment = $env:RUNNER_ENVIRONMENT
108
+ Temp = $env:RUNNER_TEMP
109
+ $Perflog = $env:RUNNER_PERFLOG
110
+ $ToolCache = $env:RUNNER_TOOL_CACHE
111
+ $TrackingID = $env:RUNNER_TRACKING_ID
112
+ Workspace = $env:RUNNER_WORKSPACE
113
+ Processors = [System.Environment]::ProcessorCount
114
+ } | Format-List
115
+ }
116
+
117
Write-Output '┗━━━━━━━━━━━━━━━━━━━━━━━━━━━┛'
118
119
} catch {
0 commit comments