Daniel/engine desktop build #8
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Handle Emulator Build | |
on: | |
push: | |
branches: [ "master" ] | |
pull_request: | |
branches: [ "master" ] | |
jobs: | |
build-handle-emulator: | |
runs-on: windows-latest | |
steps: | |
- name: Checkout Editor | |
uses: actions/checkout@v3 | |
with: | |
ref: 'master' | |
- name: Checkout Vortex Engine | |
uses: actions/checkout@v3 | |
with: | |
repository: 'StoneOrbits/VortexEngine' | |
path: 'VortexTestingFramework/VortexEngine' | |
ref: 'handle' | |
- name: Set up MSBuild path | |
uses: microsoft/setup-msbuild@v1 | |
- name: Build | |
run: msbuild VortexTestingFramework.sln /p:Configuration=Release /p:Platform=x64 | |
- name: Rename Binary | |
run: Rename-Item x64/Release/VortexTestingFramework.exe -NewName VortexEmulatorHandle.exe | |
- name: Upload Artifacts | |
uses: actions/upload-artifact@v2 | |
with: | |
name: Binaries | |
path: x64/Release/VortexEmulatorHandle.exe |