diff --git a/scripts/create-release.ps1 b/scripts/create-release.ps1 index c54ed43..6b45bae 100644 --- a/scripts/create-release.ps1 +++ b/scripts/create-release.ps1 @@ -11,5 +11,5 @@ if ($exists) { gh release upload --repo $REPO --clobber $tag "./build/store.yml" (Get-Item .\build\extensions\*.zip -ErrorAction Ignore) } else { Write-Output "Release does not already exist: $tag, uploading as new files" - gh release create --repo $REPO --target $branch $tag "./build/store.yml" (Get-Item .\build\extensions\*.zip) --title "Store for $branch" --notes "This release is generated by a script" + gh release create --repo $REPO --target $branch $tag "./build/store.yml" (Get-Item .\build\extensions\*.zip -ErrorAction Ignore) --title "Store for $branch" --notes "This release is generated by a script" } \ No newline at end of file