feat: add one-click netlify deployment

This commit is contained in:
KevIsDev
2025-02-24 17:24:00 +00:00
parent bffb8a2a90
commit 2a8472ed17
9 changed files with 1343 additions and 346 deletions

View File

@@ -17,7 +17,11 @@ export interface StartAction extends BaseAction {
type: 'start';
}
export type BoltAction = FileAction | ShellAction | StartAction;
export interface BuildAction extends BaseAction {
type: 'build';
}
export type BoltAction = FileAction | ShellAction | StartAction | BuildAction;
export type BoltActionData = BoltAction | BaseAction;