Skip to content

Commit

Permalink
exact
Browse files Browse the repository at this point in the history
  • Loading branch information
freddydk committed Nov 16, 2024
1 parent 057e5be commit 86c28cc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Actions/Deliver/Deliver.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -252,7 +252,7 @@ foreach ($thisProject in $projectList) {
Get-Item -Path (Join-Path $folder[0] "*.app") | ForEach-Object {
$appJson = Get-AppJsonFromAppFile -appFile $_.FullName
$packageId = Get-BcNuGetPackageId -publisher $appJson.publisher -name $appJson.name -id $appJson.id -version $appJson.version
if (!(Get-BcNuGetPackage -nuGetServerUrl $nuGetServerUrl -nuGetToken $nuGetToken -packageName $packageId -packageVersion $appJson.Version -select -allowPrerelease)) {
if (!(Get-BcNuGetPackage -nuGetServerUrl $nuGetServerUrl -nuGetToken $nuGetToken -packageName $packageId -packageVersion $appJson.Version -select Exact -allowPrerelease)) {
$parameters = @{
"gitHubRepository" = "$ENV:GITHUB_SERVER_URL/$ENV:GITHUB_REPOSITORY"
"preReleaseTag" = $preReleaseTag
Expand Down

0 comments on commit 86c28cc

Please sign in to comment.