Skip to content

Commit

Permalink
Update maui.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
brminnick authored Nov 16, 2023
1 parent 3271b33 commit 9f1e5f2
Showing 1 changed file with 12 additions and 12 deletions.
24 changes: 12 additions & 12 deletions .github/workflows/maui.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,10 +15,10 @@ jobs:
steps:
- uses: actions/checkout@v1

- name: Setup .NET v7.0
- name: Setup .NET v8.0
uses: actions/setup-dotnet@v3
with:
dotnet-version: "7.0.x"
dotnet-version: "8.0.x"

- name: Install .NET MAUI Workload
run: |
Expand All @@ -28,20 +28,20 @@ jobs:
run: |
dotnet restore ./src
- name: Build Android App
- name: Build MAUI App
run: |
dotnet build ./src -f net7.0-android
dotnet build ./src -f net8.0-android
Build_iOS:
runs-on: macos-13

steps:
- uses: actions/checkout@v1

- name: Setup .NET v7.0
- name: Setup .NET v8.0
uses: actions/setup-dotnet@v3
with:
dotnet-version: "7.0.x"
dotnet-version: "8.0.x"

- name: Install .NET MAUI Workload
run: |
Expand All @@ -58,18 +58,18 @@ jobs:

- name: Build iOS App
run: |
dotnet build ./src -f net7.0-ios
dotnet build ./src -f net8.0-ios
Build_MacCatalyst:
runs-on: macos-13

steps:
- uses: actions/checkout@v1

- name: Setup .NET v7.0
- name: Setup .NET v8.0
uses: actions/setup-dotnet@v3
with:
dotnet-version: "7.0.x"
dotnet-version: "8.0.x"

- name: Install .NET MAUI Workload
run: |
Expand All @@ -86,7 +86,7 @@ jobs:

- name: Build macOS App
run: |
dotnet build ./src -f net7.0-maccatalyst
dotnet build ./src -f net8.0-maccatalyst
Build_Windows:
runs-on: windows-latest
Expand All @@ -99,10 +99,10 @@ jobs:
distribution: 'microsoft'
java-version: '11'

- name: Setup .NET v7.0
- name: Setup .NET v8.0
uses: actions/setup-dotnet@v3
with:
dotnet-version: "7.0.x"
dotnet-version: "8.0.x"

- name: Install .NET MAUI Workload
run: |
Expand Down

0 comments on commit 9f1e5f2

Please sign in to comment.