Skip to content

Commit

Permalink
docs: correct the grammar
Browse files Browse the repository at this point in the history
  • Loading branch information
sxbrsky committed Jul 1, 2024
1 parent 5fb2470 commit a537ca1
Showing 1 changed file with 5 additions and 10 deletions.
15 changes: 5 additions & 10 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ A GitHub Action to fetch a list of active PHP releases from [php.net](https://ph

### `releases`

The list of latest releases, as a list of objects (`object[]`).
The list of the latest releases, as a list of objects (`object[]`).

```json
[
Expand Down Expand Up @@ -51,8 +51,7 @@ jobs:
outputs:
releases: ${{ steps.get-latest-releases.outputs.releases }}
steps:
-
name: checkout
- name: Checkout
uses: actions/checkout@v4
- uses: nulxrd/latest-php-releases-action@v1
id: get-latest-releases
Expand All @@ -62,15 +61,11 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
releases: ${{ fromJson(needs.latest-releases.outputs.releases)}}
releases: ${{ fromJson(needs.latest-releases.outputs.releases) }}
steps:
-
name: checkout
- name: Checkout
uses: actions/checkout@v4
-
run: echo "php-${{ matrix.releases.version }}"


- run: echo "php-${{ matrix.releases.version }}"
```
## License
Expand Down

0 comments on commit a537ca1

Please sign in to comment.