2020-02-05 05:34:19 +00:00
|
|
|
export interface Inputs {
|
|
|
|
readonly DeployKey: string;
|
|
|
|
readonly GithubToken: string;
|
|
|
|
readonly PersonalToken: string;
|
|
|
|
readonly PublishBranch: string;
|
|
|
|
readonly PublishDir: string;
|
2020-07-21 02:15:53 +00:00
|
|
|
readonly DestinationDir: string;
|
2020-02-05 05:34:19 +00:00
|
|
|
readonly ExternalRepository: string;
|
|
|
|
readonly AllowEmptyCommit: boolean;
|
|
|
|
readonly KeepFiles: boolean;
|
|
|
|
readonly ForceOrphan: boolean;
|
|
|
|
readonly UserName: string;
|
|
|
|
readonly UserEmail: string;
|
|
|
|
readonly CommitMessage: string;
|
2020-05-04 00:50:38 +00:00
|
|
|
readonly FullCommitMessage: string;
|
2020-02-05 05:34:19 +00:00
|
|
|
readonly TagName: string;
|
|
|
|
readonly TagMessage: string;
|
2020-02-24 09:49:55 +00:00
|
|
|
readonly DisableNoJekyll: boolean;
|
|
|
|
readonly CNAME: string;
|
2020-02-05 05:34:19 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
export interface CmdResult {
|
|
|
|
exitcode: number;
|
|
|
|
output: string;
|
|
|
|
}
|