Compare commits

...

2 Commits

Author SHA1 Message Date
Jesse Brown 3a692e4a34
Merge pull request #1517 from buildpacks/jab/debug-draft-release
debug draft step to see why it does not like recent release branch
2025-07-18 11:27:38 -05:00
Jesse Brown f8bf3ed25e
debug draft step to see why it does not like recent release branch 2025-07-18 09:06:11 -05:00
1 changed files with 4 additions and 1 deletions

View File

@ -83,7 +83,10 @@ jobs:
throw "no artifacts found"
}
if (urlList.length != 10) {
throw "there should be exactly 10 artifacts"
// found too many artifacts
// list them and throw
console.log(urlList);
throw "there should be exactly 10 artifacts, found " + urlList.length + " artifacts"
}
return urlList.join(",")
})