Allows to detect disguise units with Psychic Sensor in Ra2Mode #54
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-2019 | |
steps: | |
- uses: actions/checkout@v3 | |
with: | |
submodules: recursive | |
- name: Build | |
uses: ./.github/actions/build # Build steps are reused | |
with: | |
sln-path: ${{env.SOLUTION_FILE_PATH}} | |
build-config: ${{env.BUILD_CONFIGURATION}} |