-
Notifications
You must be signed in to change notification settings - Fork 0
37 lines (33 loc) · 1.1 KB
/
basic-ci.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
# This GitHub Action builds a .NET MAUI project for all targeted platforms
# The workflow can be triggered manually, is triggered on a git push or
# when a PR is opened that targets the main branch.
# This just verifies the project builds, no artifacts are being uploaded or can be retrieved.
name: Build .NET MAUI Project
on:
workflow_dispatch:
push:
branches: [ "main" ]
paths-ignore:
- "**.md"
pull_request:
branches: [ "main" ]
# Customize with your own values here
env:
BUILD_CONFIGURATION: Release
DOTNET_VERSION: 8.0.x
CSPROJ_TO_BUILD: EkseemMaarNet.csproj
jobs:
build-ci:
runs-on: windows-latest
steps:
- uses: actions/checkout@v3
- name: Setup .NET ${{ env.DOTNET_VERSION }}
uses: actions/setup-dotnet@v2
with:
dotnet-version: ${{ env.DOTNET_VERSION }}
- name: Install .NET MAUI Workload
run: dotnet workload install maui
- name: Restore dependencies
run: dotnet restore ${{ env.CSPROJ_TO_BUILD }}
- name: Build ${{ env.CSPROJ_TO_BUILD }}
run: dotnet build ${{ env.CSPROJ_TO_BUILD }} -c ${{ env.BUILD_CONFIGURATION }}