We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 791be0b commit a5773c1Copy full SHA for a5773c1
.github/workflows/dotnetcore.yml
@@ -90,8 +90,8 @@ jobs:
90
# Do the same again, but use new lines as the separator
91
printf -v joinednewline "%s\n" "${packages[@]}"
92
joinednewline="${joinednewline//'%'/'%25'}"
93
- joinednewline="${joinednewline//$'\\n'/'%0A'}"
94
- joinednewline="${joinednewline//$'\\r'/'%0D'}"
+ joinednewline="${joinednewline//$'\n'/'%0A'}"
+ joinednewline="${joinednewline//$'\r'/'%0D'}"
95
# Save the list of packages newline separated as an output variable
96
echo "::set-output name=artifacts_new_line::${joinedNewLine%\n}"
97
- name: Create Release
0 commit comments