We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 64259f7 commit 7aa9c1dCopy full SHA for 7aa9c1d
1 file changed
.github/workflows/msbuild.yml
@@ -0,0 +1,32 @@
1
+name: CI
2
+
3
+on:
4
+ push:
5
+ branches:
6
+ - master
7
+ paths:
8
+ - 'Src/**'
9
+ - 'Localization/**'
10
+ pull_request:
11
12
13
14
+jobs:
15
+ build:
16
+ runs-on: windows-latest
17
18
+ steps:
19
+ - uses: actions/checkout@v3
20
21
+ - name: Build
22
+ run: Src\Setup\__MakeFinal.bat
23
24
+ - uses: actions/upload-artifact@v3
25
+ with:
26
+ name: OpenShellSetup
27
+ path: Src/Setup/Final/OpenShellSetup_*.exe
28
29
30
31
+ name: Symbols
32
+ path: Src/Setup/Final/OpenShellPDB_*.7z
0 commit comments