New versions of toolkit packages (#835)

This commit is contained in:
Thomas Boop
2021-06-07 15:09:34 -04:00
committed by GitHub
parent c5e1af5dc3
commit 243a8bba07
10 changed files with 17 additions and 7 deletions

View File

@@ -23,7 +23,7 @@ Outputs can be set with `setOutput` which makes them available to be mapped into
```js
const myInput = core.getInput('inputName', { required: true });
const myBooleanInput = core.getBooleanInput('booleanInputName', { required: true });
const myMultilineInput = core.getMultiline('multilineInputName', { required: true });
const myMultilineInput = core.getMultilineInput('multilineInputName', { required: true });
core.setOutput('outputKey', 'outputVal');
```