#146 build with version 0.7.1 (#147) #69
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: Sync README.md to Docker Hub | |
| on: | |
| push: | |
| branches: | |
| - "main" | |
| jobs: | |
| sync-readme: | |
| runs-on: ubuntu-latest | |
| strategy: | |
| fail-fast: false | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v4 | |
| - name: Docker Hub README & description sync | |
| uses: meeDamian/[email protected] | |
| with: | |
| user: ${{ secrets.DOCKER_USERNAME }} | |
| pass: ${{ secrets.DOCKER_PASSWORD }} | |
| slug: ${{ secrets.DOCKER_USERNAME }}/librespot | |
| readme: ./README.md | |
| description: Run librespot on docker |