Skip to content

Rename .github/workflows/CI/windows_engine_build.bat to .github/workf… #52

Rename .github/workflows/CI/windows_engine_build.bat to .github/workf…

Rename .github/workflows/CI/windows_engine_build.bat to .github/workf… #52

name: 'Windows Build the Engine'
on:
push:
branches:
- master
pull_request:
branches:
- master
workflow_dispatch:
concurrency:
group: ci-${{github.actor}}-${{github.head_ref || github.run_number}}-${{github.ref}}-windows
cancel-in-progress: true
jobs:
build:
runs-on: windows-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
with:
ref: 'master'
submodules: true # Checkout submodules
- name: Run build_engine.bat using PowerShell
run: |
powershell -Command "./CI/windows_engine_build.bat"
shell: powershell