File tree Expand file tree Collapse file tree 3 files changed +4
-2
lines changed Expand file tree Collapse file tree 3 files changed +4
-2
lines changed Original file line number Diff line number Diff line change 4
4
push :
5
5
6
6
jobs :
7
+
7
8
test_return :
8
9
runs-on : ubuntu-latest
9
10
steps :
19
20
output="${{steps.output-set.outputs.result}}"
20
21
[[ "$output" != "$expected" ]] && echo "::error::❌ Expected '$expected', got '$output'" && exit 1
21
22
echo "✅ Test passed, outputs.result: ${{toJSON(steps.output-set.outputs.result)}}"
23
+
22
24
test_context :
23
25
runs-on : ubuntu-latest
24
26
steps :
Original file line number Diff line number Diff line change @@ -26,7 +26,7 @@ The return value of the script will be in the step's outputs under the "result"
26
26
27
27
### Inspired by GitHub Script
28
28
29
- This ElixirScript action is based on the amazing [GitHub Script action][github-script],
29
+ This Elixir Script action is based on the amazing [GitHub Script action][github-script],
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.
Original file line number Diff line number Diff line change @@ -13,7 +13,7 @@ inputs:
13
13
default : ${{ runner.debug == '1' }}
14
14
outputs :
15
15
result :
16
- description : The return value of the script, stringified with `JSON.stringify`
16
+ description : The stringified return value of the script
17
17
runs :
18
18
using : docker
19
19
image : Dockerfile
You can’t perform that action at this time.
0 commit comments