Skip to content

Commit a41ad31

Browse files
committed
Automatically update the description on Docker Hub
1 parent 68d8df8 commit a41ad31

File tree

1 file changed

+21
-0
lines changed

1 file changed

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

0 commit comments

Comments
 (0)