2024-12-02 19:48:40 +00:00
|
|
|
name: Update Docker Hub Description
|
|
|
|
on:
|
|
|
|
push:
|
|
|
|
branches:
|
|
|
|
- master
|
|
|
|
paths:
|
|
|
|
- README.md
|
|
|
|
workflow_dispatch:
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
dockerHubDescription:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v4
|
|
|
|
|
|
|
|
- name: Docker Hub Description
|
|
|
|
uses: peter-evans/dockerhub-description@v4
|
|
|
|
with:
|
|
|
|
username: ${{ secrets.DOCKER_USERNAME }}
|
2024-12-02 19:55:25 +00:00
|
|
|
password: ${{ secrets.DOCKER_TOKEN }}
|
2024-12-02 19:48:40 +00:00
|
|
|
repository: jcpd/docker-dotclear
|
|
|
|
short-description: ${{ github.event.repository.description }}
|
2024-12-02 19:55:25 +00:00
|
|
|
readme-filepath: ./README.md
|
2024-12-02 19:48:40 +00:00
|
|
|
enable-url-completion: true
|