From 25a9f72ee9f906d790dbfc4e79090bc21d1f1bdd Mon Sep 17 00:00:00 2001 From: georgemoralis Date: Thu, 11 May 2023 14:57:55 +0300 Subject: [PATCH] Update windows.yml fixed actions try1 --- .github/workflows/windows.yml | 18 ++++-------------- 1 file changed, 4 insertions(+), 14 deletions(-) diff --git a/.github/workflows/windows.yml b/.github/workflows/windows.yml index ba1a46b3..199a838c 100644 --- a/.github/workflows/windows.yml +++ b/.github/workflows/windows.yml @@ -12,13 +12,8 @@ on: branches: [ "main" ] 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: Release + # Customize the CMake build type here (Release, Debug, RelWithDebInfo, etc.) + BUILD_TYPE: Release permissions: contents: read @@ -32,14 +27,9 @@ jobs: with: submodules: recursive - - name: Add MSBuild to PATH - uses: microsoft/setup-msbuild@v1.3.1 - - name: Build - working-directory: ${{env.GITHUB_WORKSPACE}} - # Add additional options to the MSBuild command line here (like platform or verbosity level). - # See https://docs.microsoft.com/visualstudio/msbuild/msbuild-command-line-reference - run: msbuild /m /p:Configuration=${{env.BUILD_CONFIGURATION}} ${{env.SOLUTION_FILE_PATH}} + # Build your program with the given configuration + run: cmake --build ${{github.workspace}}/build --config ${{env.BUILD_TYPE}} - name: Upload a Build Artifact uses: actions/upload-artifact@v3.1.2