Skip to content

Commit 3e7c942

Browse files
committed
Try build in GitHub action
1 parent 1a0e8e4 commit 3e7c942

File tree

1 file changed

+35
-0
lines changed

1 file changed

+35
-0
lines changed

.github/workflows/Build.yml

Lines changed: 35 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,35 @@
1+
name: Build WPF
2+
3+
on: [push]
4+
5+
jobs:
6+
BuildDebug:
7+
8+
runs-on: windows-latest
9+
10+
steps:
11+
- uses: actions/checkout@v1
12+
13+
- name: Build
14+
run: .\build.cmd -pack -ci -configuration Debug -prepareMachine /p:Platform=x86
15+
16+
- name: Push
17+
uses: actions/upload-artifact@v4
18+
with:
19+
name: WPF_Debug
20+
path: ./artifacts/packages/Debug/NonShipping
21+
22+
BuildRelease:
23+
24+
runs-on: windows-latest
25+
26+
steps:
27+
- uses: actions/checkout@v1
28+
- name: Build
29+
run: .\build.cmd -pack -ci -configuration Release -prepareMachine /p:Platform=x86
30+
31+
- name: Push
32+
uses: actions/upload-artifact@v4
33+
with:
34+
name: WPF_Release
35+
path: ./artifacts/packages/Release/NonShipping

0 commit comments

Comments
 (0)