-
-
Notifications
You must be signed in to change notification settings - Fork 0
35 lines (30 loc) · 1.1 KB
/
dockerhub-description.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
name: Update Dockerhub Description
on:
push:
branches:
- master
paths:
- README.md
- .github/workflows/dockerhub-description.yml
jobs:
update-docker-hub-description:
runs-on: ubuntu-latest
steps:
# checkout the repo to $GITHUB_WORKSPACE
- uses: actions/checkout@v3
# update the docker hub description and overview
- name: Dockerhub description and overview update
uses: peter-evans/dockerhub-description@v3
with:
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_PASSWORD }}
repository: hetorusnl/vocya-api
short-description: ${{ github.event.repository.description }}
# update the docker hub description and overview
- name: Dockerhub description and overview update
uses: peter-evans/dockerhub-description@v3
with:
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_PASSWORD }}
repository: hetorusnl/vocya-dashboard
short-description: ${{ github.event.repository.description }}