Merge branch 'main' of https://github.com/CodexLabsLLC/Colosseum #142
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: Windows Build | |
# Controls when the action will run. | |
on: [push, pull_request, workflow_dispatch] | |
jobs: | |
build: | |
runs-on: windows-2022 | |
# Steps represent a sequence of tasks that will be executed as part of the job | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Enable Developer Command Prompt | |
uses: ilammy/msvc-dev-cmd@v1 | |
- name: Build AirLib | |
shell: cmd | |
run: build.cmd | |
- name: Unity build | |
shell: cmd | |
run: | | |
cd Unity | |
build.cmd |