From 2fa60b47f12f64979bad5d0e8b271c088c0599eb Mon Sep 17 00:00:00 2001 From: codereader Date: Fri, 16 Apr 2021 07:11:14 +0200 Subject: [PATCH] Rename yml --- .github/workflows/{msbuild.yml => build.yml} | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) rename .github/workflows/{msbuild.yml => build.yml} (86%) diff --git a/.github/workflows/msbuild.yml b/.github/workflows/build.yml similarity index 86% rename from .github/workflows/msbuild.yml rename to .github/workflows/build.yml index 1363d94505..0a4ff0527d 100644 --- a/.github/workflows/msbuild.yml +++ b/.github/workflows/build.yml @@ -2,16 +2,16 @@ name: MSBuild on: [push] -env: - # Path to the solution file relative to the root of the project. - SOLUTION_FILE_PATH: .\tools\msvc\DarkRadiant.sln - TESTS_FILE_PATH: .\install\Tests.exe - BUILD_CONFIGURATION: Release - jobs: - build: + Windows Build: runs-on: windows-latest + env: + # Path to the solution file relative to the root of the project. + SOLUTION_FILE_PATH: .\tools\msvc\DarkRadiant.sln + TESTS_FILE_PATH: .\install\Tests.exe + BUILD_CONFIGURATION: Release + steps: - uses: actions/checkout@v2