Update dependency CommunityToolkit.Mvvm to v8.3.0 #43
Workflow file for this run
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: macos-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Setup .NET v8.0 | |
uses: actions/setup-dotnet@v4 | |
with: | |
dotnet-version: "8.0.x" | |
- name: Install .NET MAUI Workload | |
run: | | |
dotnet workload install maui | |
- name: Build Android App | |
run: | | |
dotnet build HackerNews.App.sln -f net8.0-android | |
Build_iOS: | |
runs-on: macos-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Setup .NET v8.0 | |
uses: actions/setup-dotnet@v4 | |
with: | |
dotnet-version: "8.0.x" | |
- name: Install .NET MAUI Workload | |
run: | | |
dotnet workload install maui | |
- 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-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Setup .NET v8.0 | |
uses: actions/setup-dotnet@v4 | |
with: | |
dotnet-version: "8.0.x" | |
- name: Install .NET MAUI Workload | |
run: | | |
dotnet workload install maui | |
- name: Install Xcode | |
uses: maxim-lobanov/setup-xcode@v1 | |
with: | |
xcode-version: latest-stable | |
Build_Windows: | |
runs-on: windows-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-java@v4 | |
with: | |
distribution: 'microsoft' | |
java-version: '11' | |
- name: Setup .NET v8.0 | |
uses: actions/setup-dotnet@v4 | |
with: | |
dotnet-version: "8.0.x" | |
- name: Install .NET MAUI Workload | |
run: | | |
dotnet workload install maui | |
- name: Build Windows App | |
run: | | |
dotnet build HackerNews.App.sln -f net8.0-windows10.0.19041.0 |