docs: Add links to Docker Mailserver repository #3
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: Update Docker Hub Description | |
| on: | |
| push: | |
| branches: | |
| - master # or main, depending on your default branch | |
| paths: | |
| - 'README.dockerhub.md' | |
| jobs: | |
| update-dockerhub-description: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v2 | |
| - name: Update Docker Hub Description | |
| uses: peter-evans/dockerhub-description@v3 | |
| with: | |
| username: ${{ secrets.DOCKERHUB_USERNAME }} | |
| password: ${{ secrets.DOCKERHUB_TOKEN }} | |
| repository: dunajdev/docker-mailserver-gui | |
| readme-filepath: ./README.dockerhub.md | |
| short-description: "Graphical user interface for managing Docker Mailserver" |