Skip to content
This repository was archived by the owner on Jul 9, 2025. It is now read-only.
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 @@ -18,7 +18,7 @@ jest.mock('../../../src/utils/auth', () => ({

const state = {
projectId: 'test',
publishTypes: [{ name: 'azurePublish', description: 'Publish bot to Azure (Preview)' }],
publishTypes: [{ name: 'azurePublish', description: 'Publish bot to Azure' }],
};

describe('Publish Target', () => {
Expand All @@ -31,7 +31,7 @@ describe('Publish Target', () => {
setPublishTargets: setPublishTargetsMock,
getPublishTargetTypes: () => {},
});
set(publishTypesState(state.projectId), [{ name: 'azurePublish', description: 'Publish bot to Azure (Preview)' }]);
set(publishTypesState(state.projectId), [{ name: 'azurePublish', description: 'Publish bot to Azure' }]);
};
it('should add new publish profile', () => {
const { getByTestId, getByText } = renderWithRecoilAndCustomDispatchers(
Expand Down
2 changes: 1 addition & 1 deletion extensions/azurePublish/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "azurePublish",
"version": "1.0.0",
"description": "Publish bot to an Azure Web App (Preview)",
"description": "Publish bot to an Azure Web App",
"main": "dist/extension.js",
"license": "MIT",
"scripts": {
Expand Down
2 changes: 1 addition & 1 deletion extensions/azurePublish/src/node/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -665,7 +665,7 @@ export default async (composer: IExtensionRegistration): Promise<void> => {
};
}

const azurePublish = new AzurePublisher('azurePublish', 'Publish bot to Azure (Preview)', 'azurePublish');
const azurePublish = new AzurePublisher('azurePublish', 'Publish bot to Azure', 'azurePublish');

await composer.addPublishMethod(azurePublish);
};
2 changes: 1 addition & 1 deletion extensions/pvaPublish/src/node/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ function initialize(registration: IExtensionRegistration) {
setLogger(registration.log);
const extension = {
name: 'pva-publish-composer',
description: 'Publish bot to Power Virtual Agents (Preview)',
description: 'Publish bot to Power Virtual Agents',
bundleId: 'publish',
getHistory: history,
getStatus,
Expand Down