We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 89e039a + b7e6d02 commit f4daa20Copy full SHA for f4daa20
.github/workflows/main.yml
@@ -0,0 +1,17 @@
1
+name: Build EXE
2
+on: push
3
+jobs:
4
+ build_exe:
5
+ runs-on: windows-latest
6
+ steps:
7
+ - name: Checkout
8
+ uses: actions/checkout@v2
9
+ - name: Setup MSBuild
10
+ uses: microsoft/setup-msbuild@v1
11
+ - name: Build EXE
12
+ run: 'msbuild PathOfBuilding-Launcher.vcxproj /p:configuration=release /p:platform=win32'
13
+ - name: Archive EXE
14
+ uses: actions/upload-artifact@v1.0.0
15
+ with:
16
+ name: Path of Building.exe
17
+ path: '${{ github.workspace }}/Release/Path of Building.exe'
0 commit comments