diff --git a/.github/workflows/msbuild.yml b/.github/workflows/msbuild.yml index c93703e..c1b5366 100644 --- a/.github/workflows/msbuild.yml +++ b/.github/workflows/msbuild.yml @@ -4,7 +4,7 @@ on: [push, pull_request] env: # Path to the solution file relative to the root of the project. - SOLUTION_FILE_PATH: .\Pseudo3DCLIGame\Pseudo3DCLIGame.vcxproj + SOLUTION_FILE_PATH: .\${{ vars.REPOSITORY_NAME }}\${{ vars.REPOSITORY_NAME }}.vcxproj # Configuration type to build. # You can convert this to a build matrix if you need coverage of multiple configuration types. @@ -48,7 +48,7 @@ jobs: name: ${{ vars.REPOSITORY_NAME }}-build-${{ matrix.os }}-${{ matrix.configuration }}-${{ matrix.platform }}-${{ github.sha }} # optional, default is artifact # A file, directory or wildcard pattern that describes what to upload - path: Pseudo3DCLIGame\${{ matrix.platform == 'x64' && 'x64\' || '' }}${{ matrix.configuration }} + path: ${{ vars.REPOSITORY_NAME }}\${{ matrix.platform == 'x64' && 'x64\' || '' }}${{ matrix.configuration }} # The desired behavior if no files are found using the provided path. # Available Options: