Skip to content

Commit

Permalink
Deploy to publish (#2227)
Browse files Browse the repository at this point in the history
  • Loading branch information
cwhitten committed Mar 10, 2020
1 parent 6c2bc2a commit bd5402b
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 7 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -57,9 +57,9 @@ export const DeployWizard = props => {
children: <DeployWizardStep2 botValues={botValues} nextStep={completeStep2} closeModal={resetModal} />,
},
{
title: formatMessage('Deploy your Bot'),
title: formatMessage('Publish your Bot'),
subText:
'Deploy your bot code and Composer assets to Azure using the command below. Run this any time you want to update your bot on Azure.',
'Publish your bot code and Composer assets to Azure using the command below. Run this any time you want to update your bot on Azure.',
children: <DeployWizardStep3 botValues={botValues} closeModal={resetModal} />,
},
];
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ export const DeployWizardStep3 = props => {
<Stack horizontal gap="2rem" styles={styles.stackinput}>
<StackItem grow={1} styles={styles.halfstack}>
<TextField
label={formatMessage('Deploy Bot Script')}
label={formatMessage('Publish Bot Script')}
styles={styles.textarea}
value={scriptValue}
readOnly={true}
Expand All @@ -44,7 +44,7 @@ export const DeployWizardStep3 = props => {
<StackItem grow={1}>
<p>
{formatMessage(
'Copy the commands above, and paste them into your terminal. The output will look like the screenshot below. Note that it may take several minutes for the deploy to complete.'
'Copy the commands above, and paste them into your terminal. The output will look like the screenshot below. Note that it may take several minutes for the publish to complete.'
)}
</p>
<img
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,12 +11,12 @@ import { DeployWizard } from './deployWizard.js';
import { styles } from './styles';

const instructions = {
title: formatMessage('Deploy your bot to Azure'),
title: formatMessage('Publish your bot to Azure'),
description: formatMessage(
'For team members or customers to interact with this bot, your bot needs to be deployed. In this version of Composer, this step is not yet automated, however, Composer can configure Azure Resources and generate a script to deploy your bot. You can use this script whenever you want to deploy an updated version of your bot.'
'For team members or customers to interact with this bot, your bot needs to be published. In this version of Composer, this step is not yet automated, however, Composer can configure Azure Resources and generate a script to publish your bot. You can use this script whenever you want to publish an updated version of your bot.'
),
button1: formatMessage('Create Azure Resources'),
button2: formatMessage('Deploy Bot to Azure'),
button2: formatMessage('Publish Bot to Azure'),
helpLink: 'https://aka.ms/bfc-publishing-your-bot',
};

Expand Down

0 comments on commit bd5402b

Please sign in to comment.