We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 317d784 commit 1ee4459Copy full SHA for 1ee4459
1 file changed
‎scripts/main.ps1‎
@@ -1,7 +1,8 @@
1
[CmdletBinding()]
2
param()
3
4
-$PSStyle.OutputRendering = 'Ansi'
+Install-PSResource -Repository PSGallery -TrustRepository -Name Net
5
+Install-PSResource -Repository PSGallery -TrustRepository -Name PublicIP
6
Import-Module "$PSScriptRoot/Helpers.psm1"
7
8
$CONTEXT_GITHUB = $env:CONTEXT_GITHUB | ConvertFrom-Json -Depth 100
@@ -69,6 +70,15 @@ LogGroup 'Context: [INPUTS]' {
69
70
$env:CONTEXT_INPUTS
71
}
72
73
+LogGroup 'Network Info' {
74
+ Get-NetIPConfiguration
75
+}
76
+
77
+LogGroup 'Public IP Info' {
78
+ Get-PublicIP
79
80
81
82
LogGroup "File system at [$pwd]" {
83
Get-ChildItem -Path . -Force | Select-Object -ExpandProperty FullName | Sort-Object
84
0 commit comments