Skip to content

Commit

Permalink
remove extra qoutes in the outputs file
Browse files Browse the repository at this point in the history
  • Loading branch information
rajbos authored Jul 21, 2023
1 parent d1b5796 commit 12a4df3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Src/PowerShell/entrypoint.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ function main {
$filePath = "$($env:GITHUB_WORKSPACE)/used-actions.json"
Write-Host "Output file path: [$filePath]"
Set-Content -Value "$jsonObject" -Path $filePath
Set-Content -Value "actions-file='$filePath'" -Path $env:GITHUB_OUTPUT
Set-Content -Value "actions-file=$filePath" -Path $env:GITHUB_OUTPUT
Write-Host "Stored actions in the actions output. Use $${{ steps.<step id>.outputs.actions }} in next action to load the json"
Write-Host "Stored actions file in the actions output. Use $${{ steps.<step id>.outputs.actions-file }} in next action to load the file"

Expand Down

0 comments on commit 12a4df3

Please sign in to comment.