-
-
Notifications
You must be signed in to change notification settings - Fork 326
91 lines (83 loc) · 2.37 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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
# 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:
workflow_dispatch:
push:
branches:
- dev
- master
pull_request:
branches:
- dev
- master
jobs:
build:
runs-on: windows-latest
steps:
- name: Initialize Service
run: |
sc config WSearch start= auto # Starts Windows Search service- Needed for running ExplorerTest
net start WSearch
- name: Set version in all AssemblyInfo.cs files
uses: secondbounce/assemblyinfo-update@v2
with:
version: '1.9.5'
- if: ${{ runner.os == 'Windows' }}
name: Use GNU tar
shell: cmd
run: |
echo "Adding GNU tar to PATH"
echo C:\Program Files\Git\usr\bin>>"%GITHUB_PATH%"
- uses: actions/cache@v4
with:
path: |
~/.nuget/packages
!~/.nuget/packages/microsoft.netcore.app.*
key: ${{ runner.os }}-nuget-${{ hashFiles('**/csproj') }}
restore-keys: |
${{ runner.os }}-nuget-
- uses: actions/checkout@v4
- name: Setup .NET
uses: actions/setup-dotnet@v4
with:
dotnet-version: 7.0.x
- name: Restore dependencies
run: dotnet restore
- name: Build
run: dotnet build --no-restore -c Release
- name: Test
run: dotnet test --no-build --verbosity normal -c Release
- name: Perform post_build tasks
shell: pwsh
run: .\Scripts\post_build.ps1
- name: Upload Plugin Nupkg
uses: actions/upload-artifact@v4
with:
name: Plugin nupkg
path: |
Output\Release\Flow.Launcher.Plugin.*.nupkg
- name: Upload Setup
uses: actions/upload-artifact@v3
with:
name: Flow Installer
path: |
Releases\Flow-Launcher-*.exe
- name: Upload Portable Version
uses: actions/upload-artifact@v3
with:
name: Portable Version
path: |
Releases\Flow-Launcher-Portable.zip
- name: Upload Full Nupkg
uses: actions/upload-artifact@v3
with:
name: Full nupkg
path: |
Releases\FlowLauncher-*-full.nupkg
- name: Upload Release Information
uses: actions/upload-artifact@v3
with:
name: RELEASES
path: |
Releases\RELEASES