Update Docker build workflow to apply code fix

Added steps to apply and verify a fix in RefreshArtistService.cs.
This commit is contained in:
Matthew Phelps 2026-03-18 23:05:00 +11:00 committed by GitHub
parent af78f97de6
commit c8b127936c
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -11,8 +11,16 @@ jobs:
- name: Checkout
uses: actions/checkout@v4
with:
ref: v3.1.0.4875
submodules: recursive
- name: Apply fix
run: |
sed -i 's/_rootFolderService.All().Select(x => x.Path).ToList();/artists.Select(x => x.Path).ToList();/' src/NzbDrone.Core/Music/RefreshArtistService.cs
- name: Verify fix applied
run: grep -n "artists.Select(x => x.Path).ToList()" src/NzbDrone.Core/Music/RefreshArtistService.cs
- name: Setup .NET
uses: actions/setup-dotnet@v4
with: