Skip to content

Commit

Permalink
checking if we can have long filenames for the upload
Browse files Browse the repository at this point in the history
using double quotes
  • Loading branch information
hn-88 authored Dec 15, 2023
1 parent b96c714 commit 244a15f
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions .github/workflows/msbuild.yml
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,9 @@ jobs:
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:Platform=x64 /p:Configuration=Release ${{env.SOLUTION_FILE_PATH}}
run: |
msbuild /m /p:Platform=x64 /p:Configuration=Release ${{env.SOLUTION_FILE_PATH}}
rename x64\Release\x64Win10.exe "x64\Release\pan2fulldome-1.10-x64Win10.exe"
- name: Upload a Build Artifact
uses: actions/[email protected]
Expand All @@ -62,7 +64,7 @@ jobs:
name: pan2fulldomeWin10
# optional, default is artifact
# A file, directory or wildcard pattern that describes what to upload
path: x64\Release\x64Win10.exe
path: "x64\Release\pan2fulldome-1.10-x64Win10.exe"
# The desired behavior if no files are found using the provided path.
#Available Options:
# warn: Output a warning but do not fail the action
Expand Down

0 comments on commit 244a15f

Please sign in to comment.