Skip to content
This repository was archived by the owner on Jan 29, 2026. It is now read-only.

chore: Mark DMB as deprecated and suggest DUMB #20

chore: Mark DMB as deprecated and suggest DUMB

chore: Mark DMB as deprecated and suggest DUMB #20

name: Update Docker Hub Description
on:
workflow_dispatch:
push:
branches:
- master
paths:
- README.md
- .github/workflows/dockerhub-description.yml
jobs:
dockerHubDescription:
runs-on: ubuntu-latest
steps:
- name: Checkout Repository
uses: actions/checkout@v4
- name: Convert Repository Name to Lowercase
run: |
REPO_NAME=$(basename "${{ github.repository }}" | tr '[:upper:]' '[:lower:]')
echo "REPO_NAME=$REPO_NAME" >> $GITHUB_ENV
- name: Update Docker Hub Description
uses: peter-evans/dockerhub-description@v4
with:
username: ${{ secrets.DOCKER_USERNAME }}
password: ${{ secrets.DOCKER_PASSWORD }}
repository: ${{ secrets.DOCKER_USERNAME }}/${{ env.REPO_NAME }}