mirror of
https://github.com/Lidarr/Lidarr
synced 2026-05-09 05:06:09 +02:00
Fetch upstream tag before applying Docker build fix
Added a step to fetch and checkout the upstream tag v3.1.0.4875 before applying the fix.
This commit is contained in:
parent
c8b127936c
commit
e0bcfe4878
1 changed files with 6 additions and 1 deletions
7
.github/workflows/docker-build.yml
vendored
7
.github/workflows/docker-build.yml
vendored
|
|
@ -11,9 +11,14 @@ jobs:
|
|||
- name: Checkout
|
||||
uses: actions/checkout@v4
|
||||
with:
|
||||
ref: v3.1.0.4875
|
||||
submodules: recursive
|
||||
|
||||
- name: Fetch upstream tag
|
||||
run: |
|
||||
git remote add upstream https://github.com/Lidarr/Lidarr.git
|
||||
git fetch upstream refs/tags/v3.1.0.4875:refs/tags/v3.1.0.4875
|
||||
git checkout v3.1.0.4875
|
||||
|
||||
- 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
|
||||
|
|
|
|||
Loading…
Reference in a new issue