Skip to content

Commit

Permalink
fix: Add extra debug info to main pipeline
Browse files Browse the repository at this point in the history
  • Loading branch information
kekonn committed Mar 21, 2024
1 parent 46d1f67 commit f941549
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion .github/workflows/main.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,10 @@ jobs:
env:
VERSION_MANIFEST: ${{ needs.plan.outputs.versionManifest }}
run: |
$versionManifest = ConvertFrom-Json -InputObject $($env:VERSION_MANIFEST | ConvertFrom-Json) -AsHashTable
Write-Output "::debug::Encoded version manifest: $env:VERSION_MANIFEST"
$versionManifest = $env:VERSION_MANIFEST | ConvertFrom-Json
Write-Output "::debug::Decoded version manifest: $versionManifest"
$versionManifest = ConvertFrom-Json -InputObject $versionManifest -AsHashTable
foreach ($app in $versionManifest.GetEnumerator()) {
$packageVersion = $app.Value.SemVer
Write-Output "::debug::Building package " + $app.Key + " with version " + $packageVersion
Expand Down

0 comments on commit f941549

Please sign in to comment.