mirror of
https://github.com/Lidarr/Lidarr
synced 2026-05-09 05:06:09 +02:00
Update Docker build workflow to apply code fix
Added steps to apply and verify a fix in RefreshArtistService.cs.
This commit is contained in:
parent
af78f97de6
commit
c8b127936c
1 changed files with 8 additions and 0 deletions
8
.github/workflows/docker-build.yml
vendored
8
.github/workflows/docker-build.yml
vendored
|
|
@ -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:
|
||||
|
|
|
|||
Loading…
Reference in a new issue