| 1234567891011121314151617181920212223242526 |
- name: Update
- on:
- push:
- branches:
- - master
- paths:
- - readme.md
- - README.md
- - .github/workflows/hub.yml
- jobs:
- dockerHubDescription:
- runs-on: ubuntu-latest
- steps:
- -
- name: Checkout repo
- uses: actions/checkout@v6
- -
- name: Docker Hub Description
- uses: peter-evans/dockerhub-description@v5
- with:
- username: ${{ secrets.DOCKERHUB_USERNAME }}
- password: ${{ secrets.DOCKERHUB_TOKEN }}
- repository: ${{ secrets.DOCKERHUB_REPO }}
- short-description: ${{ github.event.repository.description }}
- readme-filepath: ./readme.md
|