CI Commands

This commit is contained in:
trickypr 2022-06-23 13:54:39 +10:00
parent a71f9797b5
commit d5a8fe2cc3
6 changed files with 78 additions and 8 deletions

View file

@ -35,6 +35,21 @@ export const commands: Cmd[] = [
description: 'Get and set the dynamic config from this project',
requestController: async () => (await import('./commands/set')).set,
},
{
cmd: 'ci',
description: 'Configure the CI',
requestController: async () => (await import('./commands/ci')).ci,
options: [
{
arg: '--brand <brand>',
description: 'Set the brand that the build is using',
},
{
arg: '--bump <section>',
description: 'What version should be bumped',
},
],
},
{
cmd: 'discard <file>',
description: 'Discard a files changes.',