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 3f2094e commit 8ba9c53Copy full SHA for 8ba9c53
.github/actions/dotnet/action.yml
@@ -9,11 +9,12 @@ runs:
9
shell: bash
10
run: |
11
VERSIONS=$(gh api /repos/${{ github.repository }}/properties/values | jq -r '.[] | select(.property_name == "DOTNET") | .value')
12
- echo "versions=$VERSIONS" >> $GITHUB_OUTPUT
+ VERSIONS=$(echo "$VERSIONS" | tr ',' '\n')
13
+ echo "versions=$VERSIONS" >> $GITHUB_OUTPUT
14
15
- name: ⚙ dotnet
16
if: steps.dotnet.outputs.versions != ''
17
uses: actions/setup-dotnet@v4
18
with:
19
dotnet-version: |
- ${{ join(fromJson(steps.dotnet.outputs.versions), '\n') }}
20
+ ${{ steps.dotnet.outputs.versions }}
0 commit comments