Skip to content

Commit

Permalink
Fix CI
Browse files Browse the repository at this point in the history
  • Loading branch information
fazelukario authored Nov 9, 2023
1 parent 89ff9a8 commit bc08a3c
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions .github/workflows/msbuild.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,16 +41,14 @@ jobs:
# See https://docs.microsoft.com/visualstudio/msbuild/msbuild-command-line-reference
run: msbuild /m /p:Configuration=${{ matrix.configuration }} /p:Platform=${{ matrix.platform }} /p:PlatformToolset=${{ (matrix.os == 'windows-latest' || matrix.os == 'windows-2022') && '"v143"' || '"v142"' }} ${{ env.SOLUTION_FILE_PATH }}

- run: echo ghactionpath=${{ runner.temp }}
- run: ls
- name: Upload a Build Artifact
uses: actions/upload-artifact@v3
with:
# Artifact name
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: ${{ matrix.platform == 'x64' && 'x64\' || '' }}${{ matrix.configuration }}
path: Pseudo3DCLIGame\${{ 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 bc08a3c

Please sign in to comment.