diff --git a/.woodpecker/build.yaml b/.woodpecker/build.yaml index 4fb4c71..6afcb26 100644 --- a/.woodpecker/build.yaml +++ b/.woodpecker/build.yaml @@ -9,7 +9,7 @@ steps: commands: - | REF=$$(cat UPSTREAM_REF) - git clone https://github.com/ZoltyMat/jellyfin-ha.git src + git clone https://git.unkin.net/unkin/jellyfin-ha-src.git src git -C src checkout "$$REF" dotnet publish src/Jellyfin.Server/Jellyfin.Server.csproj \ -c Release -r linux-x64 --self-contained false -o ./publish-output diff --git a/.woodpecker/docker.yaml b/.woodpecker/docker.yaml index ee2067b..f45b536 100644 --- a/.woodpecker/docker.yaml +++ b/.woodpecker/docker.yaml @@ -9,7 +9,7 @@ steps: commands: - | REF=$$(cat UPSTREAM_REF) - git clone https://github.com/ZoltyMat/jellyfin-ha.git src + git clone https://git.unkin.net/unkin/jellyfin-ha-src.git src git -C src checkout "$$REF" dotnet publish src/Jellyfin.Server/Jellyfin.Server.csproj \ -c Release -r linux-x64 --self-contained false -o ./publish-output diff --git a/Makefile b/Makefile index 34df43b..4ccc853 100644 --- a/Makefile +++ b/Makefile @@ -8,7 +8,7 @@ REF := $(shell cat UPSTREAM_REF) # ./publish-output (consumed by Dockerfile.runtime). Mirrors CI. publish: rm -rf src publish-output - git clone https://github.com/ZoltyMat/jellyfin-ha.git src + git clone https://git.unkin.net/unkin/jellyfin-ha-src.git src git -C src checkout $(REF) dotnet publish src/Jellyfin.Server/Jellyfin.Server.csproj \ -c Release -r linux-x64 --self-contained false -o ./publish-output