Skip to content

⬆️ [Code] Updated Maui v8.0.10 #9

⬆️ [Code] Updated Maui v8.0.10

⬆️ [Code] Updated Maui v8.0.10 #9

Workflow file for this run

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/setup-dotnet@v4.0.0
with:
dotnet-version: "8.0.x"
- name: Install .NET MAUI Workload
run: |
dotnet workload install maui
- name: Restore NuGet
run: |
dotnet restore ./ChatGPT
- name: Build Android App
run: |
dotnet build ./ChatGPT -f net8.0-android
Build_iOS:
runs-on: macos-14
steps:
- uses: actions/checkout@v3
- name: Setup .NET v8.0
uses: actions/setup-dotnet@v4.0.0
with:
dotnet-version: "8.0.x"
- name: Install .NET MAUI Workload
run: |
dotnet workload install maui
- name: Restore NuGet
run: |
dotnet restore ./ChatGPT
- name: Install Xcode
uses: maxim-lobanov/setup-xcode@v1
with:
xcode-version: latest-stable
- name: Build iOS App
run: |
dotnet build ./ChatGPT -f net8.0-ios
Build_MacCatalyst:
runs-on: macos-14
steps:
- uses: actions/checkout@v3
- name: Setup .NET v8.0
uses: actions/setup-dotnet@v4.0.0
with:
dotnet-version: "8.0.x"
- name: Install .NET MAUI Workload
run: |
dotnet workload install maui
- name: Restore NuGet
run: |
dotnet restore ./ChatGPT
- name: Install Xcode
uses: maxim-lobanov/setup-xcode@v1
with:
xcode-version: latest-stable
- name: Build macOS App
run: |
dotnet build ./ChatGPT -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/setup-dotnet@v4.0.0
with:
dotnet-version: "8.0.x"
- name: Install .NET MAUI Workload
run: |
dotnet workload install maui
- name: Restore NuGet
run: |
dotnet restore ./ChatGPT
- name: Build Windows App
run: |
dotnet build ./ChatGPT