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 55be20e commit 3f2e2bfCopy full SHA for 3f2e2bf
1 file changed
.github/actions/dotnet/action.yml
@@ -9,6 +9,8 @@ runs:
9
shell: bash
10
run: |
11
VERSIONS=$(gh api /repos/${{ github.repository }}/properties/values | jq -r '.[] | select(.property_name == "DOTNET") | .value')
12
+ # Remove extra whitespace from VERSIONS
13
+ VERSIONS=$(echo "$VERSIONS" | tr -s ' ' | tr -d ' ')
14
# Convert comma-separated to newline-separated
15
NEWLINE_VERSIONS=$(echo "$VERSIONS" | tr ',' '\n')
16
# Validate versions
0 commit comments