mirror of
https://github.com/Azure/k8s-deploy.git
synced 2026-06-22 11:29:28 +08:00
01a65512ea
* fresh new branch * Added coverage to gitignore Signed-off-by: Jaiveer Katariya <jaiveerkatariya@Jaiveers-MBP.lan> * reverted package-lock.json Signed-off-by: Jaiveer Katariya <jaiveerkatariya@Jaiveers-MBP.lan> Co-authored-by: Jaiveer Katariya <jaiveerkatariya@Jaiveers-MBP.lan>
7 lines
129 B
TypeScript
7 lines
129 B
TypeScript
import {ExecOutput} from '@actions/exec'
|
|
|
|
export interface DeployResult {
|
|
execResult: ExecOutput
|
|
manifestFiles: string[]
|
|
}
|