Skip to content

Commit

Permalink
github: add docker push readme action
Browse files Browse the repository at this point in the history
  • Loading branch information
dariusstefan authored and razvancrainea committed Aug 6, 2024
1 parent 9f3d06f commit 3d30b94
Showing 1 changed file with 27 additions and 0 deletions.
27 changes: 27 additions & 0 deletions .github/workflows/docker-readme.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
---
name: Update Docker Hub Description
on:
push:
branches:
- main
paths:
- README.md
- .github/workflows/docker-readme.yml

jobs:
dockerHubDescription:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4


- name: Docker Hub Description
uses: peter-evans/dockerhub-description@v4
with:
username: ${{ secrets.DOCKER_USERNAME }}
password: ${{ secrets.DOCKER_TOKEN }}
repository: opensips/opensips-cli
readme-filepath: ./README.md
short-description: ${{ github.event.repository.description }}
enable-url-completion: true

0 comments on commit 3d30b94

Please sign in to comment.