Skip to content

Commit

Permalink
Add more flexibility to CI
Browse files Browse the repository at this point in the history
  • Loading branch information
fazelukario authored Nov 9, 2023
1 parent 7fd7ab1 commit 9e7b104
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/msbuild.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down Expand Up @@ -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:
Expand Down

0 comments on commit 9e7b104

Please sign in to comment.