Skip to content

Commit 7e26635

Browse files
committed
Add an example step of how to use this action
1 parent 06368cd commit 7e26635

File tree

1 file changed

+12
-0
lines changed

1 file changed

+12
-0
lines changed

.github/workflows/ci-cd.yml

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,3 +8,15 @@ jobs:
88
runs-on: ubuntu-latest
99
steps:
1010
- uses: actions/checkout@v3
11+
12+
- name: Integration test
13+
id: output-set
14+
uses: ./
15+
with:
16+
script: |
17+
IO.puts("hello world")
18+
"return value"
19+
20+
- name: Showing the output
21+
run: |
22+
echo "outputs.result: ${{toJSON(steps.output-set.outputs.result)}}"

0 commit comments

Comments
 (0)