File tree Expand file tree Collapse file tree
.github/actions/determine-version Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -43,10 +43,10 @@ runs:
4343 fi
4444
4545 BUILD_VERSION=""
46- if [[ ! -f "${{ inputs.suffix }}" ]]; then
47- BUILD_VERSION = "$(dotnet msbuild "$FILE" -nologo -p:VersionSuffix=${{ inputs.suffix }} -getProperty:${{ inputs.property }} | tr -d '\r')"
46+ if [[ ! "${{ inputs.suffix }}" ]]; then
47+ BUILD_VERSION= "$(dotnet msbuild "$FILE" -nologo -p:VersionSuffix=${{ inputs.suffix }} -getProperty:${{ inputs.property }} | tr -d '\r')"
4848 else
49- BUILD_VERSION = "$(dotnet msbuild "$FILE" -nologo -getProperty:${{ inputs.property }} | tr -d '\r')"
49+ BUILD_VERSION= "$(dotnet msbuild "$FILE" -nologo -getProperty:${{ inputs.property }} | tr -d '\r')"
5050 fi
5151
5252 VERSION="$(dotnet msbuild "$FILE" -nologo -getProperty:${{ inputs.property }} | tr -d '\r')"
You can’t perform that action at this time.
0 commit comments