-
Notifications
You must be signed in to change notification settings - Fork 0
48 lines (43 loc) · 1.53 KB
/
dotnet.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
38
39
40
41
42
43
44
45
46
47
48
# This workflow will build a .NET project
# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-net
name: .NET
on:
push:
branches: [ "master" ]
pull_request:
branches: [ "master" ]
jobs:
build:
runs-on: windows-2022
steps:
- uses: actions/checkout@v4
- name: Setup .NET
uses: actions/setup-dotnet@v4
with:
dotnet-version: 8.0.x
- name: Setup Java SDK
uses: actions/setup-java@v4
with:
distribution: 'microsoft'
java-version: 17
- name: search workloads
run: dotnet workload search
- name: restore workloads
run: dotnet workload install maui maui-android maui-ios maui-tizen maui-maccatalyst maui-windows android --source https://api.nuget.org/v3/index.json
- name: list workloads
run: dotnet workload list
- name: Restore dependencies
run: dotnet restore -s https://www.myget.org/F/caliburn-micro-builds/api/v3/index.json -s https://api.nuget.org/v3/index.json
- name: Restore win-x64
run: dotnet restore --runtime win-x64
- name: Build
run: dotnet build --configuration Release
- name: Test
run: dotnet test --configuration Release --no-build --verbosity normal
- name: Pack Nuget
run: dotnet pack ClientNoSqlDB/ClientNoSqlDB.csproj --configuration Release
- name: Upload Artifact
uses: actions/upload-artifact@v4
with:
name: published_nuget
path: ClientNoSqlDB/bin/Release/ClientNoSqlDB.2.0.0.nupkg