Skip to content

more adjustments to chromadeck layout #7

more adjustments to chromadeck layout

more adjustments to chromadeck layout #7

Workflow file for this run

name: Orbit Emulator Build
on:
push:
branches: [ "master" ]
pull_request:
branches: [ "master" ]
jobs:
build-orbit-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: 'orbit'
- 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 VortexEmulatorOrbit.exe
- name: Upload Artifacts
uses: actions/upload-artifact@v2
with:
name: Binaries
path: x64/Release/VortexEmulatorOrbit.exe