diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 894d03d..24f800f 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -38,14 +38,14 @@ jobs: md build cd build dir - cmake -G "Visual Studio 16 2019" -A arm64 .. + cmake -G "Visual Studio 16 2019" -A x64 .. cmake --build . --config Release - name: Build WinCenterTitle 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}} /property:Platform=arm64 + run: msbuild /m /p:Configuration=${{env.BUILD_CONFIGURATION}} ${{env.SOLUTION_FILE_PATH}} /property:Platform=x64 - name: Upload WinCenterTitle uses: actions/upload-artifact@v3