2024-01-14 13:32:50 +00:00
|
|
|
name: Update
|
|
|
|
on:
|
|
|
|
push:
|
|
|
|
branches:
|
|
|
|
- master
|
|
|
|
paths:
|
|
|
|
- readme.md
|
|
|
|
- README.md
|
|
|
|
- .github/workflows/hub.yml
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
dockerHubDescription:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v4
|
|
|
|
-
|
|
|
|
name: Docker Hub Description
|
2024-01-25 15:16:32 +00:00
|
|
|
uses: peter-evans/dockerhub-description@v4
|
2024-01-14 13:32:50 +00:00
|
|
|
with:
|
|
|
|
username: ${{ secrets.DOCKERHUB_USERNAME }}
|
|
|
|
password: ${{ secrets.DOCKERHUB_TOKEN }}
|
|
|
|
repository: ${{ secrets.DOCKERHUB_REPO }}
|
|
|
|
short-description: ${{ github.event.repository.description }}
|
|
|
|
readme-filepath: ./readme.md
|