Enabling extra platforms
This commit is contained in:
parent
8333ef0692
commit
4dea94f981
|
@ -22,12 +22,12 @@ jobs:
|
||||||
uses: actions/setup-dotnet@v3
|
uses: actions/setup-dotnet@v3
|
||||||
with:
|
with:
|
||||||
dotnet-version: ${{env.DOTNET_VERSION}}
|
dotnet-version: ${{env.DOTNET_VERSION}}
|
||||||
- name: Find dotnet executable
|
- name: .net contents
|
||||||
run : where dotnet
|
run : dir ${{env.DOTNET_ROOT}}
|
||||||
- name: Enable Extra Platforms
|
- name: Enable Extra Platforms
|
||||||
shell: bash
|
shell: bash
|
||||||
run: |
|
run: |
|
||||||
BUNDLEDVERSIONS=${{env.DOTNET_ROOT}}/dotnet/sdk/${DOTNET_VERSION}/Microsoft.NETCoreSdk.BundledVersions.props
|
BUNDLEDVERSIONS="${{env.DOTNET_ROOT}}/dotnet/sdk/${DOTNET_VERSION}/Microsoft.NETCoreSdk.BundledVersions.props"
|
||||||
echo $BUNDLEDVERSIONS
|
echo $BUNDLEDVERSIONS
|
||||||
if grep -q freebsd-x64 $BUNDLEDVERSIONS; then
|
if grep -q freebsd-x64 $BUNDLEDVERSIONS; then
|
||||||
echo "Extra platforms already enabled"
|
echo "Extra platforms already enabled"
|
||||||
|
|
Loading…
Reference in New Issue