Skip to content
This repository has been archived by the owner on Jan 18, 2024. It is now read-only.

Commit

Permalink
Log about upload after build:ios completes (#2649)
Browse files Browse the repository at this point in the history
* Log about publish after build:ios completes

* Update BaseBuilder.ts
  • Loading branch information
EvanBacon authored Sep 16, 2020
1 parent c3227b8 commit 5d06e69
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions packages/expo-cli/src/commands/build/BaseBuilder.ts
Original file line number Diff line number Diff line change
Expand Up @@ -380,7 +380,13 @@ ${job.id}
const artifactUrl = completedJob.artifactId
? UrlUtils.constructArtifactUrl(completedJob.artifactId)
: completedJob.artifacts.url;
log.addNewLineIfNone();
log(`${chalk.green('Successfully built standalone app:')} ${chalk.underline(artifactUrl)}`);
if (process.platform === 'darwin') {
log.newLine();
log(`You can publish to the App Store with ${chalk.bold('expo upload:ios')}`);
}
log.newLine();
} else {
log('Alternatively, run `expo build:status` to monitor it from the command line.');
}
Expand Down

0 comments on commit 5d06e69

Please sign in to comment.