Swap to Environment Files V1 Release (#77)

* Swap to Environment Files
This commit is contained in:
Thomas Boop 2020-10-01 10:45:33 -04:00 committed by GitHub
parent 9fbc767707
commit 0caeaed6fd
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
58 changed files with 3717 additions and 2608 deletions

View file

@ -1,16 +1,16 @@
interface CommandProperties {
[key: string]: string;
[key: string]: any;
}
/**
* Commands
*
* Command Format:
* ##[name key=value;key=value]message
* ::name key=value,key=value::message
*
* Examples:
* ##[warning]This is the user warning message
* ##[set-secret name=mypassword]definatelyNotAPassword!
* ::warning::This is the message
* ::set-env name=MY_VAR::some value
*/
export declare function issueCommand(command: string, properties: CommandProperties, message: string): void;
export declare function issue(name: string, message: string): void;
export declare function issueCommand(command: string, properties: CommandProperties, message: any): void;
export declare function issue(name: string, message?: string): void;
export {};