Skip to content

Commit

Permalink
fix: Another attempt at fixing build step
Browse files Browse the repository at this point in the history
  • Loading branch information
kekonn committed Mar 22, 2024
1 parent 2f3ce48 commit 4a3b2c4
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions .github/workflows/main.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -67,10 +67,8 @@ jobs:
- name: Build
shell: pwsh
env:
VERSION_MANIFEST: ${{ needs.plan.outputs.versionManifest }}
VERSION_MANIFEST: ${{ fromJson(needs.plan.outputs.versionManifest) }}
run: |
Write-Output "::debug::Encoded version manifest: $env:VERSION_MANIFEST"
$versionManifest = $env:VERSION_MANIFEST | ConvertFrom-Json
Write-Output "::debug::Decoded version manifest: $versionManifest"
$versionManifest = $versionManifest | ConvertFrom-Json -AsHashTable
foreach ($app in $versionManifest.GetEnumerator()) {
Expand Down

0 comments on commit 4a3b2c4

Please sign in to comment.