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

Log about upload after build:ios completes #2649

Merged
merged 2 commits into from
Sep 16, 2020
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 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,11 @@ ${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)}`);
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