We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7ad5101 commit c3407a2Copy full SHA for c3407a2
.changeset/thirty-numbers-lick.md
@@ -0,0 +1,5 @@
1
+---
2
+"app-builder-lib": patch
3
4
+
5
+Fix release conflicts for Keygen publisher when releases share the same version across open/licensed products.
packages/app-builder-lib/src/publish/KeygenPublisher.ts
@@ -206,7 +206,7 @@ export class KeygenPublisher extends HttpPublisher {
206
private async getRelease(): Promise<{ data?: KeygenRelease; errors?: KeygenError[] }> {
207
const req: RequestOptions = {
208
hostname: this.hostname,
209
- path: `${this.basePath}/releases/${this.version}`,
+ path: `${this.basePath}/releases/${this.version}?product=${this.info.product}`,
210
headers: {
211
Accept: "application/vnd.api+json",
212
"Keygen-Version": "1.1",
0 commit comments