@catladder/cli
Version:
Panter cli tool for cloud CI/CD and DevOps
13 lines (11 loc) • 413 B
text/typescript
import { defineCommand } from "../../core/defineCommand";
import { setupAccessTokens } from "../../apps/cli/commands/project/setup/setupAccessTokens";
export const commandRenewToken = defineCommand({
name: "project renew-token",
description: "Configures the project access token for semantic release.",
group: "project",
inputs: {},
execute: async (ctx) => {
await setupAccessTokens(ctx);
},
});