Skip to content

Commit

Permalink
include file path delimiter in concatenation
Browse files Browse the repository at this point in the history
  • Loading branch information
doebrowsk authored Oct 23, 2024
1 parent 3a4ab0a commit eee48fe
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/dotnet-build-and-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -126,7 +126,7 @@ jobs:
$buildFiles = Get-ChildItem -File -Path $outputDir -Name
$releaseArtifacts
foreach ($zipFile in $buildFiles) {
$releaseArtifacts = $releaseArtifacts + $outputDir + $zipFile + [Environment]::NewLine
$releaseArtifacts = $releaseArtifacts + $outputDir + "\" + $zipFile + [Environment]::NewLine
}
echo "release_artifacts: $releaseArtifacts"
echo "Writing in as multiline github env variable"
Expand Down

0 comments on commit eee48fe

Please sign in to comment.