Skip to content

Commit

Permalink
docs: improve some points in the docs
Browse files Browse the repository at this point in the history
  • Loading branch information
bcomnes committed Feb 28, 2020
1 parent 4fedf81 commit afac634
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ Create a workflow `.yml` file in your repositories `.github/workflows` directory

### Inputs

- `creds`: An array of credential objects (`machine`, `login`, `password`). Required.
- `creds`: A JSON array of credential objects (`machine`, `login`, `password`). Required. Github actions doesn't support strucutred input. womp.

### Outputs

Expand Down Expand Up @@ -46,12 +46,12 @@ jobs:
{
"machine": "github.com",
"login": "${{env.login}}",
"password": "1234"
"password": "${{ secrets.GH_MACHINE_TOKEN }}"
},
{
"machine": "api.github.com",
"login": "${{env.login}}",
"password": "1234"
"password": "${{ secrets.GH_MACHINE_TOKEN }}"
}
]
```
Expand Down

0 comments on commit afac634

Please sign in to comment.