Skip to content

testing workflow build #1

testing workflow build

testing workflow build #1

Workflow file for this run

name: Duo Emulator Build
on:
push:
branches: [ "master" ]
pull_request:
branches: [ "master" ]
jobs:
build-duo-emulator:
runs-on: windows-latest
steps:
- uses: actions/checkout@v3
- name: Checkout Vortex Engine
uses: actions/checkout@v3
with:
repository: 'StoneOrbits/VortexEngine'
path: 'VortexTestingFramework/VortexEngine'
ref: 'duo'
- 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 VortexEmulatorDuo.exe
- name: Upload Artifacts
uses: actions/upload-artifact@v2
with:
name: Binaries
path: x64/Release/VortexEmulatorDuo.exe