-
-
Notifications
You must be signed in to change notification settings - Fork 0
54 lines (41 loc) · 1.3 KB
/
build.yml
File metadata and controls
54 lines (41 loc) · 1.3 KB
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
49
50
51
52
53
54
name: build
on:
workflow_dispatch:
push:
branches: [ "main" ]
pull_request:
jobs:
build:
runs-on: windows-latest
env:
Dotnet_Version: 8.0.x
Project_Path: Flow.Launcher.Localization\Flow.Launcher.Localization.csproj
steps:
# Checkout codes
- name: Checkout
uses: actions/checkout@v4
# Install the .NET Core workload
- name: Setup .NET
uses: actions/setup-dotnet@v4
with:
dotnet-version: ${{ env.Dotnet_Version }}
# Restore dependencies
- name: Restore dependencies
run: dotnet restore ${{ env.Project_Path }}
# Build the project
- name: Build
run: dotnet build ${{ env.Project_Path }} --configuration Release --no-restore
# Execute all unit tests in the solution
- name: Execute unit tests
if: github.event_name == 'push' && github.ref != 'refs/heads/main'
run: dotnet test --configuration Release --no-build
# Pack the NuGet package
- name: Create NuGet package
run: dotnet pack ${{ env.Project_Path }} --configuration Release --no-build --output nupkgs
# Upload the NuGet package
- name: Upload NuGet package
uses: actions/upload-artifact@v4
with:
name: Full nupkg
path: nupkgs/Flow.Launcher.Localization.*.nupkg
compression-level: 0