mirror of
https://github.com/pacnpal/markov-discord.git
synced 2025-12-19 18:51:05 -05:00
22 lines
525 B
YAML
Executable File
22 lines
525 B
YAML
Executable File
|
|
name: Update Docker Hub Description
|
|
on:
|
|
push:
|
|
branches:
|
|
- master
|
|
paths:
|
|
- README.md
|
|
- .github/workflows/dockerhub-description.yml
|
|
jobs:
|
|
dockerHubDescription:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
|
|
- name: Docker Hub Description
|
|
uses: peter-evans/dockerhub-description@v4
|
|
with:
|
|
username: charlocharlie
|
|
password: ${{ secrets.DOCKERHUB_PASSWORD }}
|
|
repository: charlocharlie/markov-discord
|
|
readme-filepath: ./README.md |