mirror of
https://github.com/JamesIves/github-pages-deploy-action.git
synced 2023-12-15 20:03:39 +08:00
10 lines
312 B
TypeScript
10 lines
312 B
TypeScript
import { ActionInterface, Status } from './constants';
|
|
/**
|
|
* Initializes git in the workspace.
|
|
*/
|
|
export declare function init(action: ActionInterface): Promise<void | Error>;
|
|
/**
|
|
* Runs the necessary steps to make the deployment.
|
|
*/
|
|
export declare function deploy(action: ActionInterface): Promise<Status>;
|