Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: change deploy copy to publish #2227

Merged
merged 1 commit into from
Mar 10, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
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
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