try to get around weird type casting issue

This commit is contained in:
David Sparer
2017-03-22 16:22:53 -06:00
parent 695ae9d970
commit 45099bfa07

View File

@@ -29,18 +29,20 @@ param (
#
$Description,
[bool]
[string]
[Parameter(Mandatory=$true)]
#
# true/false
$IsDraft,
[bool]
[string]
[Parameter(Mandatory=$true)]
#
[ValidateSet("true","false")]
# true/false
$IsPrerelease,
[string]
[Parameter(Mandatory=$true)]
[ValidateSet("true","false")]
# Path to the zip file to upload with the release
$ZipFilePath,