Skip to content

Commit

Permalink
Passing deployment details as JSON
Browse files Browse the repository at this point in the history
  • Loading branch information
Matthew Garrett committed Aug 28, 2023
1 parent 1130e2b commit 8061ddc
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/azure-ipam-testing.yml
Original file line number Diff line number Diff line change
Expand Up @@ -116,7 +116,7 @@ jobs:
Set-AzStorageBlobContent @uploadDetails
Write-Output "deployDetails=$logDetails" >> $Env:GITHUB_OUTPUT
Write-Output "deployDetails=$($logDetails | ConvertTo-Json)" >> $Env:GITHUB_OUTPUT
- name: "Output Azure IPAM Deployment Details"
env:
Expand All @@ -126,7 +126,7 @@ jobs:
Write-Host "-------------------"
Write-Host "Deployment Details:"
Write-Host "-------------------"
Write-Host ($env:DEPLOYMENT_DETAILS | Format-Table | Out-String) -NoNewline
Write-Host ($env:DEPLOYMENT_DETAILS | ConvertFrom-Json -AsHashtable | Format-Table | Out-String) -NoNewline
Write-Host "-------------------"
test:
Expand Down

0 comments on commit 8061ddc

Please sign in to comment.