mirror of https://github.com/actions/toolkit
raising not implemented earlier
parent
4ebc9007c0
commit
a2078cf37c
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "@actions/core",
|
||||
"version": "1.0.0",
|
||||
"version": "1.0.1",
|
||||
"description": "Actions core lib",
|
||||
"keywords": [
|
||||
"github",
|
||||
|
|
|
@ -46,6 +46,9 @@ export function exportVariable(name: string, val: string): void {
|
|||
*/
|
||||
export function exportSecret(name: string, val: string): void {
|
||||
exportVariable(name, val)
|
||||
// the runner will error with not implemented.
|
||||
// leaving the function but raising the error earlier
|
||||
throw new Error("Not implemented.");
|
||||
issueCommand('set-secret', {}, val)
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue