mirror of
https://github.com/LIV2/container-amiga-godbolt.git
synced 2025-12-06 00:32:47 +00:00
25 lines
641 B
YAML
25 lines
641 B
YAML
name: Update Docker Hub Description
|
|
on:
|
|
push:
|
|
branches:
|
|
- main
|
|
paths:
|
|
- README.md
|
|
- .github/workflows/document.yml
|
|
workflow_dispatch:
|
|
jobs:
|
|
description:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
|
|
- name: Docker Hub Description
|
|
uses: peter-evans/dockerhub-description@v4
|
|
with:
|
|
username: ${{ vars.DOCKERHUB_USERNAME }}
|
|
password: ${{ secrets.DOCKERHUB_TOKEN }}
|
|
repository: ${{ vars.DOCKERHUB_REPO }}
|
|
readme-filepath: ./README.md
|
|
short-description: ${{ github.event.repository.description }}
|
|
enable-url-completion: true
|