mirror of
https://gitlab.com/Binaryify/neteasecloudmusicapi.git
synced 2025-05-23 22:37:41 +08:00
24 lines
667 B
YAML
24 lines
667 B
YAML
name: Update Docker Hub Description
|
|
on:
|
|
push:
|
|
branches:
|
|
- main
|
|
paths:
|
|
- README.MD
|
|
- .github/workflows/DockerHub-Description.yml
|
|
jobs:
|
|
dockerHubDescription:
|
|
if: startsWith(github.repository, 'Binaryify/ncm')
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v3
|
|
|
|
- name: Docker Hub Description
|
|
uses: peter-evans/dockerhub-description@v3
|
|
with:
|
|
username: ${{ secrets.DOCKER_USERNAME }}
|
|
password: ${{ secrets.DOCKER_PASSWORD }}
|
|
repository: binaryify/netease_cloud_music_api
|
|
short-description: ${{ github.event.repository.description }}
|
|
readme-filepath: ./README.MD
|