There was an error while loading. Please reload this page.
1 parent 6f297f2 commit 4f62cdcCopy full SHA for 4f62cdc
1 file changed
.github/actions/determine-version/action.yml
@@ -42,8 +42,9 @@ runs:
42
exit 1
43
fi
44
45
+ BUILD_VERSION=""
46
if [[ ! -f "${{ inputs.suffix }}" ]]; then
- BUILD_VERSION = "$(dotnet msbuild "$FILE" -nologo -getProperty:${{ inputs.property }} | tr -d '\r') -p:VersionSuffix=${{ inputs.suffix }}"
47
+ BUILD_VERSION = "$(dotnet msbuild "$FILE" -nologo -p:VersionSuffix=${{ inputs.suffix }} -getProperty:${{ inputs.property }} | tr -d '\r')"
48
else
49
BUILD_VERSION = "$(dotnet msbuild "$FILE" -nologo -getProperty:${{ inputs.property }} | tr -d '\r')"
50
0 commit comments