Skip to content

Commit

Permalink
Dont save submission details for alpha app release.
Browse files Browse the repository at this point in the history
  • Loading branch information
ankur2136 committed Jul 27, 2024
1 parent 3ffe17b commit 2aac144
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 8 deletions.
10 changes: 6 additions & 4 deletions packages/cli/src/commands/publish/PublishCliSubmit.ts
Original file line number Diff line number Diff line change
Expand Up @@ -85,8 +85,10 @@ export const publishSubmitCommand = async ({
dryRun
);

await writeToPublishDetails(
{
lastUpdatedVersionOnStore: { address: releaseAddr }
});
if (!alphaTest) {
await writeToPublishDetails(
{
lastUpdatedVersionOnStore: { address: releaseAddr }
});
}
};
10 changes: 6 additions & 4 deletions packages/cli/src/commands/publish/PublishCliUpdate.ts
Original file line number Diff line number Diff line change
Expand Up @@ -93,8 +93,10 @@ export const publishUpdateCommand = async ({
},
dryRun
);
await writeToPublishDetails(
{
lastUpdatedVersionOnStore: { address: releaseAddr }
});
if (!alphaTest) {
await writeToPublishDetails(
{
lastUpdatedVersionOnStore: { address: releaseAddr }
});
}
};

0 comments on commit 2aac144

Please sign in to comment.