Revert 24fc2f5961a67b579236495c250fb846f41d7d73 #3622
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: Nightly Build | |
on: | |
push: | |
branches: | |
- master | |
- main | |
- develop | |
env: | |
# Path to the solution file relative to the root of the project. | |
SOLUTION_FILE_PATH: . | |
# Configuration type to build. | |
# You can convert this to a build matrix if you need coverage of multiple configuration types. | |
# https://docs.github.com/actions/learn-github-actions/managing-complex-workflows#using-a-build-matrix | |
BUILD_CONFIGURATION: DevBuild | |
# GIT_COMMIT: $(git rev-parse --short "$GITHUB_SHA") | |
# GIT_BRANCH: ${GITHUB_REF#refs/heads/} | |
jobs: | |
build: | |
runs-on: windows-2022 | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
submodules: recursive | |
- name: Build Phobos | |
uses: ./.github/actions/build-phobos # Build steps are reused | |
with: | |
sln-path: ${{env.SOLUTION_FILE_PATH}} | |
build-config: ${{env.BUILD_CONFIGURATION}} |