Skip to content

Update workflows

Update workflows #1

Workflow file for this run

name: "Nightly Build"
on:
push:
branches:
- main
- develop
env:
SOLUTION_PATH: .
BUILD_CONFIGURATION: DevBuild
jobs:
build:
runs-on: windows-2019
steps:
- uses: actions/checkout@v4
with:
submodules: recursive
- name: Build
uses: ./.github/actions/build
with:
sln-path: ${{ env.SOLUTION_PATH }}
build-config: ${{ env.BUILD_CONFIGURATION }}