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 f65855e commit 9e18298Copy full SHA for 9e18298
automation/utils/bin/rui-publish-marketplace.ts
@@ -12,6 +12,11 @@ async function main(): Promise<void> {
12
13
assert.ok(tag, "env.TAG is empty");
14
15
+ if (marketplace.appNumber === -1) {
16
+ console.log(`Skipping release process for tag ${fgGreen(tag)}. appNumber is set to -1 in package.json.`);
17
+ process.exit(2);
18
+ }
19
+
20
console.log(`Starting release process for tag ${fgGreen(tag)}`);
21
22
const artifactUrl = await gh.getMPKReleaseArtifactUrl(tag);
0 commit comments