Skip to content

Commit 4f62cdc

Browse files
committed
fix assignment
1 parent 6f297f2 commit 4f62cdc

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

.github/actions/determine-version/action.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,8 +42,9 @@ runs:
4242
exit 1
4343
fi
4444
45+
BUILD_VERSION=""
4546
if [[ ! -f "${{ inputs.suffix }}" ]]; then
46-
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')"
4748
else
4849
BUILD_VERSION = "$(dotnet msbuild "$FILE" -nologo -getProperty:${{ inputs.property }} | tr -d '\r')"
4950
fi

0 commit comments

Comments
 (0)