Updated SICVM Build to 24.12.7.1 #38
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: CI | |
on: | |
push: | |
branches: 'main' | |
jobs: | |
build: | |
runs-on: windows-latest | |
steps: | |
- uses: actions/checkout@master | |
- name: Setup MSBuild.exe | |
uses: microsoft/[email protected] | |
- name: MSBuild | |
working-directory: "SIC Simulator" | |
run: msbuild "SIC Simulator.csproj" | |
- name: Archive production artifacts | |
uses: actions/upload-artifact@v2 | |
with: | |
name: "SIC VM" | |
path: "SIC Simulator/obj/Debug/SIC Simulator.exe" |