Skip to content

Commit 2efc1a6

Browse files
committed
Create msbuild.yml
1 parent 1cc5d2e commit 2efc1a6

File tree

1 file changed

+32
-0
lines changed

1 file changed

+32
-0
lines changed

.github/workflows/msbuild.yml

Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -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+
branches:
12+
- master
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+
- uses: actions/upload-artifact@v3
30+
with:
31+
name: Symbols
32+
path: Src/Setup/Final/OpenShellPDB_*.7z

0 commit comments

Comments
 (0)