[READ-ONLY] Mirror of https://github.com/FoxxMD/multi-scrobbler. Scrobble plays from multiple sources to multiple clients docs.multi-scrobbler.app
deezer docker jellyfin koito lastfm listenbrainz maloja mopidy mpris music music-assistant plex scrobble self-hosted spotify subsonic tautulli youtube-music
0

Configure Feed

Select the types of activity you want to include in your feed.

ci: Add docs repo dispatch

FoxxMD (Apr 6, 2026, 6:01 PM UTC) a998060b c53ce7c5

+17 -4
+17 -4
.github/workflows/docsDeploy.yml
··· 28 28 - name: Install docusaurus dependencies 29 29 run: npm ci 30 30 working-directory: ./docsite 31 + 31 32 - name: Build website 32 33 env: 33 - ANALYTICS: ${{ vars.ANALYTICS }} 34 - ANALYTICS_DOMAIN: ${{ vars.ANALYTICS_DOMAIN }} 35 34 RY_ANALYTICS: ${{ vars.RY_ANALYTICS }} 36 35 RY_ANALYTICS_SITEID: ${{ vars.RY_ANALYTICS_SITEID }} 37 - RY_ANALYTICS_REPLAY: ${{ vars.RY_ANALYTICS_REPLAY }} 38 36 GSITEVERIFICATION: ${{ vars.GSITEVERIFICATION }} 39 37 DOCS_BASE: '/multi-scrobbler' 40 38 run: npm run build ··· 43 41 # Popular action to deploy to GitHub Pages: 44 42 # Docs: https://github.com/peaceiris/actions-gh-pages#%EF%B8%8F-docusaurus 45 43 - name: Deploy to GitHub Pages 46 - uses: peaceiris/actions-gh-pages@373f7f263a76c20808c831209c920827a82a2847 #3.9.3 44 + uses: peaceiris/actions-gh-pages@4f9cc6602d3f66b9c108549d475ec49e8ef4d45e #4.0.0 47 45 with: 48 46 github_token: ${{ secrets.GITHUB_TOKEN }} 49 47 # Build output to publish to the `gh-pages` branch: ··· 55 53 # You can swap them out with your own user credentials. 56 54 user_name: github-actions[bot] 57 55 user_email: 41898282+github-actions[bot]@users.noreply.github.com 56 + 57 + - name: Trigger dependent build 58 + if: ${{ secrets.DOCS_DISPATCH_TOKEN != '' && vars.DOCS_REPO !== ''}} 59 + run: | 60 + # Trigger builds in dependent repositories 61 + curl -X POST \ 62 + -H "Accept: application/vnd.github+json" \ 63 + -H "Authorization: Bearer ${{ secrets.DOCS_DISPATCH_TOKEN }}" \ 64 + "https://api.github.com/repos/${{ vars.DOCS_REPO }}/dispatches" \ 65 + -d "{ 66 + \"event_type\": \"release\", 67 + \"client_payload\": { 68 + \"commit\": \"${{ github.sha }}\" 69 + } 70 + }"