mirror of
https://github.com/peter-evans/dockerhub-description.git
synced 2024-11-21 19:49:32 +01:00
docs: update readme
This commit is contained in:
parent
fe4fd29897
commit
a5a2b94bf3
1 changed files with 16 additions and 0 deletions
16
README.md
16
README.md
|
@ -43,6 +43,20 @@ If this is not the case the path can be specified with the `readme-filepath` inp
|
|||
readme-filepath: ./path/to/README.md
|
||||
```
|
||||
|
||||
#### Using the GitHub repository description
|
||||
|
||||
The GitHub repository description can be used for the Docker Hub `short-descripton` by passing the description from the event context.
|
||||
|
||||
```yml
|
||||
- name: Docker Hub Description
|
||||
uses: peter-evans/dockerhub-description@v2
|
||||
with:
|
||||
username: ${{ secrets.DOCKERHUB_USERNAME }}
|
||||
password: ${{ secrets.DOCKERHUB_PASSWORD }}
|
||||
repository: peterevans/dockerhub-description
|
||||
short-description: ${{ github.event.repository.description }}
|
||||
```
|
||||
|
||||
### Examples
|
||||
|
||||
The following workflow updates the Docker Hub repository description whenever there are changes to `README.md` and the workflow file itself on the `master` branch. This workflow assumes its location to be `.github/workflows/dockerhub-description.yml`.
|
||||
|
@ -68,6 +82,7 @@ jobs:
|
|||
username: ${{ secrets.DOCKERHUB_USERNAME }}
|
||||
password: ${{ secrets.DOCKERHUB_PASSWORD }}
|
||||
repository: peterevans/dockerhub-description
|
||||
short-description: ${{ github.event.repository.description }}
|
||||
```
|
||||
|
||||
Updates the Docker Hub repository description whenever a new release is created.
|
||||
|
@ -87,6 +102,7 @@ jobs:
|
|||
username: ${{ secrets.DOCKERHUB_USERNAME }}
|
||||
password: ${{ secrets.DOCKERHUB_PASSWORD }}
|
||||
repository: peterevans/dockerhub-description
|
||||
short-description: ${{ github.event.repository.description }}
|
||||
```
|
||||
|
||||
## Using the Docker image independently of GitHub Actions
|
||||
|
|
Loading…
Reference in a new issue