Skip to content

Commit

Permalink
this
Browse files Browse the repository at this point in the history
  • Loading branch information
mattleibow committed Aug 23, 2024
1 parent 170599e commit 581a43c
Showing 1 changed file with 9 additions and 3 deletions.
12 changes: 9 additions & 3 deletions .github/workflows/setup-tools/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,18 +12,24 @@ runs:
xcode-version: latest-stable
- name: Setup .NET
uses: actions/setup-dotnet@v4
if: runner.os == 'Windows'
with:
dotnet-version: 8.0.x
- name: Setup .NET
uses: actions/setup-dotnet@v4
if: runner.os != 'Windows'
with:
dotnet-version: 8.0.304
- name: Force .NET version
if: runner.os != 'Windows'
run: dotnet new globaljson --sdk-version 8.0.304
- name: Show .NET Info
shell: pwsh
run: dotnet --info
- name: Setup .NET MAUI
if: runner.os == 'Linux'
shell: pwsh
run: dotnet workload install maui-android --source https://api.nuget.org/v3/index.json
- name: Setup .NET MAUI
if: runner.os == 'macOS'
shell: pwsh
run: dotnet workload install maui --source https://api.nuget.org/v3/index.json
- name: Setup Tizen.NET
if: runner.os != 'Windows'
Expand Down

0 comments on commit 581a43c

Please sign in to comment.