Compare commits
9 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 248027aaea | |||
| 0020ee2a58 | |||
| b1470f3158 | |||
| ec04b35b39 | |||
| a369c49457 | |||
| 8738315c52 | |||
| ac507021f3 | |||
| 26e57c8655 | |||
| 9f8d9014d3 |
@@ -5,11 +5,11 @@ steps:
|
||||
# Clone the pinned upstream jellyfin-ha source and publish the .NET server
|
||||
# into ./publish-output (consumed by Dockerfile.runtime).
|
||||
- name: publish
|
||||
image: mcr.microsoft.com/dotnet/sdk:10.0
|
||||
image: mcr.microsoft.com/dotnet/sdk:9.0
|
||||
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
|
||||
|
||||
+11
-3
@@ -5,11 +5,11 @@ when:
|
||||
steps:
|
||||
# Same publish step as the PR pipeline: clone pinned upstream + dotnet publish.
|
||||
- name: publish
|
||||
image: mcr.microsoft.com/dotnet/sdk:10.0
|
||||
image: mcr.microsoft.com/dotnet/sdk:9.0
|
||||
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
|
||||
@@ -25,12 +25,20 @@ steps:
|
||||
cpu: 4
|
||||
|
||||
# Build the runtime image and push it to the artifactapi local docker registry.
|
||||
# The plugin image bakes artifactapi's internal (Vault) CA at
|
||||
# /etc/docker/certs.d/<registry>/ca.crt; buildkit_config points the buildx
|
||||
# docker-container builder at that in-image CA. buildkitd runs in its own
|
||||
# container and performs the push, so it needs the CA via --config even though
|
||||
# the plugin image already trusts it — buildx copies the referenced file in.
|
||||
- name: docker
|
||||
image: woodpeckerci/plugin-docker-buildx
|
||||
image: artifactapi.k8s.syd1.au.unkin.net/docker-internal/plugin-docker-buildx:latest
|
||||
settings:
|
||||
registry: artifactapi.k8s.syd1.au.unkin.net
|
||||
repo: artifactapi.k8s.syd1.au.unkin.net/docker-internal/jellyfin-ha
|
||||
dockerfile: Dockerfile.runtime
|
||||
buildkit_config: |
|
||||
[registry."artifactapi.k8s.syd1.au.unkin.net"]
|
||||
ca = ["/etc/docker/certs.d/artifactapi.k8s.syd1.au.unkin.net/ca.crt"]
|
||||
tags:
|
||||
- ${CI_COMMIT_TAG}
|
||||
- latest
|
||||
|
||||
@@ -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
|
||||
|
||||
+1
-1
@@ -1 +1 @@
|
||||
d4f9c12c22d3a640f3b0a3622b23b8cd01d044ad
|
||||
2e1e445e470c2f2c1520f66678a73faa226c2058
|
||||
|
||||
Reference in New Issue
Block a user