Merge pull request #11 from worryboy/feature/containerize-schlundtech #7
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: Docker Hub Description | |
| on: | |
| push: | |
| branches: | |
| - main | |
| paths: | |
| - README.Docker.md | |
| - .github/workflows/dockerhub-description.yml | |
| jobs: | |
| dockerhub-description: | |
| name: Update Docker Hub Description | |
| runs-on: ubuntu-latest | |
| environment: dockerhub | |
| steps: | |
| - name: Check out repository | |
| uses: actions/checkout@v4 | |
| - name: Update Docker Hub repository description | |
| uses: peter-evans/dockerhub-description@v4 | |
| with: | |
| username: ${{ secrets.DOCKERHUB_USERNAME }} | |
| password: ${{ secrets.DOCKERHUB_TOKEN }} | |
| repository: worryboy/internetx-dyndns | |
| readme-filepath: ./README.Docker.md | |
| short-description: Containerized InterNetX DynDNS worker for IPv4/IPv6-aware DNS updates. |