Skip to content

Commit f1ac7a4

Browse files
dariusstefanrazvancrainea
authored andcommitted
github: add docker push readme action
1 parent 47002b8 commit f1ac7a4

1 file changed

Lines changed: 27 additions & 0 deletions

File tree

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

0 commit comments

Comments
 (0)