-
Notifications
You must be signed in to change notification settings - Fork 9
56 lines (44 loc) · 1.47 KB
/
dotnet-desktop.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
name: Publish Exe Files
on:
push:
branches: [ "master" ]
pull_request:
branches: [ "master" ]
jobs:
build:
runs-on: windows-latest
env:
Solution_Name: LemonApp.sln # Replace with your solution name, i.e. MyWpfApp.sln.
PublishFile: LemonApp\Properties\PublishProfiles\FolderProfile.pubxml
PublishFilex86: LemonApp\Properties\PublishProfiles\FolderProfilex86.pubxml
PublishPath: LemonApp\bin\Publish\
steps:
- name: Checkout
uses: actions/checkout@v4
with:
fetch-depth: 0
# Install the .NET Core workload
- name: Install .NET Core
uses: actions/setup-dotnet@v4
with:
dotnet-version: 8.0.x
# Add MSBuild to the PATH: https://github.com/microsoft/setup-msbuild
- name: Setup MSBuild.exe
uses: microsoft/setup-msbuild@v2
# Restore the application to populate the obj folder with RuntimeIdentifiers
- name: Restore
run: dotnet restore
- name: Publishx64
run: dotnet publish -p:PublishProfile=${{env.PublishFile}}
- name: Publishx86
run: dotnet publish -p:PublishProfile=${{env.PublishFilex86}}
- name: Upload build artifacts
uses: actions/upload-artifact@v3
with:
name: Release win-x64
path: ${{env.PublishPath}}\x64
- name: Upload build artifacts x86
uses: actions/upload-artifact@v3
with:
name: Release win-x86
path: ${{env.PublishPath}}\x86