Skip to content

Commit

Permalink
fix: README.md update. Closes #1
Browse files Browse the repository at this point in the history
  • Loading branch information
cycipher committed Dec 8, 2023
1 parent 849db04 commit 1cfbeed
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ GitHub Action to execute Javascript within workflows.

- Executes any Javascript code
- Inputs and outputs can be overridden
- Can read arbitrary inputs and write arbitratry outputs
- Can read arbitrary inputs and write arbitrary outputs

## Usage

Expand All @@ -24,9 +24,9 @@ GitHub Action to execute Javascript within workflows.

### Outputs

| Output | Description |
|----------|----------------------------|
| `result` | Javasript execution result |
| Output | Description |
|----------|-----------------------------|
| `result` | Javascript execution result |

## Examples

Expand Down Expand Up @@ -59,7 +59,7 @@ GitHub Action to execute Javascript within workflows.
id: <step_id>
with:
js: |
output("output_1", "Hello World!")
output("Hello World!", "output_1")
- name: Print output
run: echo ${{ steps.<step_id>.outputs.output_1 }}
```

0 comments on commit 1cfbeed

Please sign in to comment.