-
Notifications
You must be signed in to change notification settings - Fork 0
40 lines (30 loc) · 981 Bytes
/
Build-CatBot.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
name: Build CatBot Only
on: workflow_dispatch
jobs:
build-catbot-only:
name: Build CatBot only
runs-on: windows-latest
env:
SolutionName: CatBot.sln
Architecture: x86
DotNetVersion: net8.0
steps:
- name: Checkout
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Setup MSBuild.exe
uses: microsoft/setup-msbuild@v2
- name: Setup NuGet
uses: nuget/setup-nuget@v2
- name: Restore the application
run: msbuild $env:SolutionName /t:Restore /p:Configuration=Release
- name: Restore NuGet Packages
run: nuget restore $env:SolutionName
- name: Build solution
run: msbuild $env:SolutionName /t:rebuild /p:Configuration=Release
- name: Upload build artifacts
uses: actions/upload-artifact@v4
with:
name: CatBot
path: bin/${{ env.Architecture }}/Release/${{ env.DotNetVersion }}