Skip to content

Commit f4daa20

Browse files
authored
Merge pull request #1 from Wires77/gh-actions
Build through GitHub
2 parents 89e039a + b7e6d02 commit f4daa20

File tree

1 file changed

+17
-0
lines changed

1 file changed

+17
-0
lines changed

.github/workflows/main.yml

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -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

Comments
 (0)