mirror of
https://github.com/C4illin/ConvertX.git
synced 2025-10-23 04:52:18 +00:00
28 lines
719 B
YAML
28 lines
719 B
YAML
name: Update Docker Hub Description
|
|
|
|
env:
|
|
IMAGE_NAME: ${{ github.repository }}
|
|
DOCKERHUB_USERNAME: c4illin
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- main
|
|
paths:
|
|
- README.md
|
|
- .github/workflows/dockerhub-description.yml
|
|
jobs:
|
|
dockerHubDescription:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v5
|
|
|
|
- name: Docker Hub Description
|
|
uses: peter-evans/dockerhub-description@v5
|
|
with:
|
|
username: ${{ env.DOCKERHUB_USERNAME }}
|
|
password: ${{ secrets.DOCKERHUB_TOKEN }}
|
|
repository: ${{ env.IMAGE_NAME }}
|
|
short-description: ${{ github.event.repository.description }}
|
|
enable-url-completion: true
|