We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1a0e8e4 commit 3e7c942Copy full SHA for 3e7c942
.github/workflows/Build.yml
@@ -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
25
26
27
28
29
+ run: .\build.cmd -pack -ci -configuration Release -prepareMachine /p:Platform=x86
30
31
32
33
34
+ name: WPF_Release
35
+ path: ./artifacts/packages/Release/NonShipping
0 commit comments