Update maui.yml #18
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: .NET MAUI | |
on: | |
push: | |
branches: | |
- "main" | |
pull_request: | |
branches: | |
- "*" | |
jobs: | |
Build_Android: | |
runs-on: windows-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Setup .NET v8.0 | |
uses: actions/setup-dotnet@v3 | |
with: | |
dotnet-version: "8.0.x" | |
- name: Install .NET MAUI Workload | |
run: | | |
dotnet workload install maui | |
- name: Restore NuGet | |
run: | | |
dotnet restore HackerNews.App.sln | |
- name: Build Android App | |
run: | | |
dotnet build HackerNews.App.sln -f net8.0-android | |
Build_iOS: | |
runs-on: macos-13 | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Setup .NET v8.0 | |
uses: actions/setup-dotnet@v3 | |
with: | |
dotnet-version: "8.0.x" | |
- name: Install .NET MAUI Workload | |
run: | | |
dotnet workload install maui | |
- name: Restore NuGet | |
run: | | |
dotnet restore HackerNews.App.sln | |
- name: Install Xcode | |
uses: maxim-lobanov/setup-xcode@v1 | |
with: | |
xcode-version: latest-stable | |
- name: Build iOS App | |
run: | | |
dotnet build HackerNews.App.sln -f net8.0-ios | |
Build_MacCatalyst: | |
runs-on: macos-13 | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Setup .NET v8.0 | |
uses: actions/setup-dotnet@v3 | |
with: | |
dotnet-version: "8.0.x" | |
- name: Install .NET MAUI Workload | |
run: | | |
dotnet workload install maui | |
- name: Restore NuGet | |
run: | | |
dotnet restore HackerNews.App.sln | |
- name: Install Xcode | |
uses: maxim-lobanov/setup-xcode@v1 | |
with: | |
xcode-version: latest-stable | |
- name: Build macOS App | |
run: | | |
dotnet build HackerNews.App.sln -f net8.0-maccatalyst | |
Build_Windows: | |
runs-on: windows-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-java@v3 | |
with: | |
distribution: 'microsoft' | |
java-version: '11' | |
- name: Setup .NET v8.0 | |
uses: actions/setup-dotnet@v3 | |
with: | |
dotnet-version: "8.0.x" | |
- name: Install .NET MAUI Workload | |
run: | | |
dotnet workload install maui | |
- name: Restore NuGet | |
run: | | |
dotnet restore HackerNews.App.sln | |
- name: Build Windows App | |
run: | | |
dotnet build HackerNews.App.sln |