CWA can now autodetect if it's deployed via Docker for Windows or Doc… #82
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 | |
| # Automatically mirrors the README to the project's DockerHub page | |
| on: | |
| push: | |
| branches: | |
| - main | |
| paths: | |
| - README.md | |
| - .github/workflows/dockerhub-description.yml | |
| workflow_dispatch: | |
| jobs: | |
| dockerHubDescription: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Docker Hub Description | |
| uses: peter-evans/dockerhub-description@v4 | |
| with: | |
| username: ${{ secrets.DOCKERHUB_USERNAME }} | |
| password: ${{ secrets.DOCKERHUB_PASSWORD }} | |
| repository: crocodilestick/calibre-web-automated | |
| short-description: ${{ github.event.repository.description }} | |
| enable-url-completion: true |