Skip to content

Commit d637152

Browse files
committed
Update README.md
1 parent f5ab6fa commit d637152

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -224,8 +224,8 @@ We recommend using [aws-actions/configure-aws-credentials](https://github.com/aw
224224

225225
|               Name               | Description |
226226
| ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
227-
| `label` | Name of the unique label assigned to the runner. <br><br> The label is used in two cases: <br> - to use as the input of `runs-on` property for the following jobs; <br> - to remove the runner from GitHub when it is not needed anymore. |
228-
| `ec2-instance-id` | EC2 Instance Id of the created runner. <br><br> The id is used to terminate the EC2 instance when the runner is not needed anymore. |
227+
| `label` | Name of the unique label assigned to the runners. <br><br> The label is used in two cases: <br> - to use as the input of `runs-on` property for the following jobs; <br> - to remove the runner from GitHub when it is not needed anymore. |
228+
| `ec2-instance-ids` | EC2 Instance Ids of the created runners. <br><br> The id is used to terminate the EC2 instance when the runner is not needed anymore. |
229229

230230
### Example
231231

@@ -240,7 +240,7 @@ jobs:
240240
runs-on: ubuntu-latest
241241
outputs:
242242
label: ${{ steps.start-ec2-runner.outputs.label }}
243-
ec2-instance-id: ${{ steps.start-ec2-runner.outputs.ec2-instance-id }}
243+
ec2-instance-ids: ${{ steps.start-ec2-runner.outputs.ec2-instance-ids }}
244244
steps:
245245
- name: Configure AWS credentials
246246
uses: aws-actions/configure-aws-credentials@v1
@@ -291,7 +291,7 @@ jobs:
291291
mode: stop
292292
github-token: ${{ secrets.GH_PERSONAL_ACCESS_TOKEN }}
293293
label: ${{ needs.start-runner.outputs.label }}
294-
ec2-instance-id: ${{ needs.start-runner.outputs.ec2-instance-id }}
294+
ec2-instance-ids: ${{ needs.start-runner.outputs.ec2-instance-ids }}
295295
```
296296
297297
### Real user examples

0 commit comments

Comments
 (0)