mirror of
https://git.mirrors.martin98.com/https://github.com/actions/toolkit
synced 2026-01-03 16:12:56 +08:00
lint fixes
This commit is contained in:
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…
x
Reference in New Issue
Block a user