Skip to content
This repository was archived by the owner on Apr 15, 2026. It is now read-only.

Commit d1438a0

Browse files
committed
chore(tags): add tags
1 parent 248a793 commit d1438a0

2 files changed

Lines changed: 4 additions & 0 deletions

File tree

packages/framework-core/src/api/app.ts

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -39,13 +39,15 @@ export async function createAndDeployCloudBaseProject({
3939
Source,
4040
AddonConfig,
4141
NetworkConfig,
42+
Tags,
4243
}: {
4344
Name: string;
4445
Parameters: Record<string, string>[];
4546
RcJson: string;
4647
Source: Record<string, any>;
4748
AddonConfig: string;
4849
NetworkConfig: string;
50+
Tags: string[];
4951
}) {
5052
return CloudApi.tcbService.request('CreateAndDeployCloudBaseProject', {
5153
Name,
@@ -54,6 +56,7 @@ export async function createAndDeployCloudBaseProject({
5456
Source,
5557
AddonConfig,
5658
NetworkConfig,
59+
Tags,
5760
Type: 'framework-oneclick-local',
5861
});
5962
}

packages/framework-core/src/index.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -350,6 +350,7 @@ ${entryLogInfo}`);
350350
framework: this.appConfig,
351351
})
352352
),
353+
Tags: this.appConfig.tags || [],
353354
AddonConfig: JSON.stringify(this.appConfig.addons),
354355
NetworkConfig: JSON.stringify(this.appConfig.network),
355356
});

0 commit comments

Comments
 (0)