Skip to content

Commit 2aff7b6

Browse files
authored
Create dockerhub-description.yml (#81)
1 parent 05f9c9e commit 2aff7b6

File tree

1 file changed

+25
-0
lines changed

1 file changed

+25
-0
lines changed
Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
2+
name: Update Docker Hub Description
3+
on:
4+
push:
5+
branches:
6+
- master
7+
paths:
8+
- README.md
9+
- .github/workflows/dockerhub-description.yml
10+
workflow_dispatch:
11+
12+
jobs:
13+
dockerHubDescription:
14+
runs-on: ubuntu-latest
15+
steps:
16+
- uses: actions/checkout@v4
17+
- name: Update Docker Hub description
18+
uses: peter-evans/dockerhub-description@v4
19+
with:
20+
username: ${{ secrets.DOCKERHUB_USERNAME }}
21+
password: ${{ secrets.DOCKERHUB_PASSWORD }}
22+
enable-url-completion: true
23+
short-description: ${{ github.event.repository.description }}
24+
repository: xianpengshen/clang-tools
25+
readme-filepath: ./README.md

0 commit comments

Comments
 (0)