mirror of https://github.com/actions/toolkit
lint fixes
parent
17a0aa40f3
commit
7cd421b8bc
|
@ -46,10 +46,11 @@ export function exportVariable(name: string, val: string): void {
|
||||||
*/
|
*/
|
||||||
export function exportSecret(name: string, val: string): void {
|
export function exportSecret(name: string, val: string): void {
|
||||||
exportVariable(name, val)
|
exportVariable(name, val)
|
||||||
// the runner will error with not implemented.
|
|
||||||
|
// the runner will error with not implemented
|
||||||
// leaving the function but raising the error earlier
|
// leaving the function but raising the error earlier
|
||||||
throw new Error("Not implemented.");
|
|
||||||
issueCommand('set-secret', {}, val)
|
issueCommand('set-secret', {}, val)
|
||||||
|
throw new Error('Not implemented.')
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|
Loading…
Reference in New Issue