-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
checking if we can have long filenames for the upload
using double quotes
- Loading branch information
Showing
1 changed file
with
4 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -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] | ||
|
@@ -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 | ||
|