⬆️ [Code] Updated MAUI v8.0.7 #45
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 - CI | |
on: | |
push: | |
branches: | |
- "main" | |
paths-ignore: | |
- '.gitattributes' | |
- '.gitignore' | |
- 'LICENSE' | |
- 'README.md' | |
- 'Design/**' | |
- 'Assets/**' | |
pull_request: | |
branches: | |
- "*" | |
paths-ignore: | |
- '.gitattributes' | |
- '.gitignore' | |
- 'LICENSE' | |
- 'README.md' | |
- 'Design/**' | |
- 'Assets/**' | |
jobs: | |
Build_Android: | |
runs-on: windows-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Setup .NET v8.0 | |
uses: actions/[email protected] | |
with: | |
dotnet-version: "8.0.x" | |
- name: Install .NET MAUI Workload | |
run: | | |
dotnet workload install maui | |
- name: Restore NuGet | |
run: | | |
dotnet restore ./Meow | |
- name: Build Android App | |
run: | | |
dotnet build ./Meow -f net8.0-android | |
Build_iOS: | |
runs-on: macos-14 | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Setup .NET v8.0 | |
uses: actions/[email protected] | |
with: | |
dotnet-version: "8.0.x" | |
- name: Install .NET MAUI Workload | |
run: | | |
dotnet workload install maui | |
- name: Restore NuGet | |
run: | | |
dotnet restore ./Meow | |
- name: Install Xcode | |
uses: maxim-lobanov/setup-xcode@v1 | |
with: | |
xcode-version: latest-stable | |
- name: Build iOS App | |
run: | | |
dotnet build ./Meow -f net8.0-ios | |
Build_MacCatalyst: | |
runs-on: macos-14 | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Setup .NET v8.0 | |
uses: actions/[email protected] | |
with: | |
dotnet-version: "8.0.x" | |
- name: Install .NET MAUI Workload | |
run: | | |
dotnet workload install maui | |
- name: Restore NuGet | |
run: | | |
dotnet restore ./Meow | |
- name: Install Xcode | |
uses: maxim-lobanov/setup-xcode@v1 | |
with: | |
xcode-version: latest-stable | |
- name: Build macOS App | |
run: | | |
dotnet build ./Meow -f net8.0-maccatalyst | |
Build_Windows: | |
runs-on: windows-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions/setup-java@v3 | |
with: | |
distribution: 'microsoft' | |
java-version: '11' | |
- name: Setup .NET v8.0 | |
uses: actions/[email protected] | |
with: | |
dotnet-version: "8.0.x" | |
- name: Install .NET MAUI Workload | |
run: | | |
dotnet workload install maui | |
- name: Restore NuGet | |
run: | | |
dotnet restore ./Meow | |
- name: Build Windows App | |
run: | | |
dotnet build ./Meow |