File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -10,13 +10,13 @@ The following arguments are available in the script's context:
10
10
11
11
Since the script is just a function body, these values will already be defined, so you don't have to import them.
12
12
13
- The return value of the script will be in the step's outputs under the "result" key.
13
+ The return value of the script will be in the step's ` outputs.result ` :
14
14
15
15
``` yaml
16
16
- uses : gaggle/elixir_script@v0
17
17
id : script
18
18
with :
19
- script : <your_elixir_code_here>
19
+ script : " <your_elixir_code_here>"
20
20
21
21
- name : Get result
22
22
run : echo "${{steps.script.outputs.result}}"
@@ -30,7 +30,7 @@ This Elixir Script action is based on the amazing [GitHub Script action][github-
30
30
which is primarily built around Javascript.
31
31
Elixir Script adapts its interfaces and functionality to the Elixir environment,
32
32
aiming to provide a seamless experience for Elixir developers.
33
- Many thanks to the creators and contributors of GitHub Script for their innovative approach .
33
+ Many thanks to the creators and contributors of GitHub Script.
34
34
35
35
[github-script]: https://github.com/marketplace/actions/github-script
36
36
You can’t perform that action at this time.
0 commit comments