From 0146a0bfbac04f372f713ca492d7df888ae7f506 Mon Sep 17 00:00:00 2001 From: Vegard Engen Date: Fri, 27 Jun 2025 00:38:20 +0200 Subject: [PATCH] Correct manifests with correct image --- .gitea/workflows/publish.yaml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.gitea/workflows/publish.yaml b/.gitea/workflows/publish.yaml index 3e994cc..d2b1f5e 100644 --- a/.gitea/workflows/publish.yaml +++ b/.gitea/workflows/publish.yaml @@ -49,12 +49,13 @@ jobs: --bare - name: Build manifest run: | - make build-installer + IMB="${GITEA_REGISTRY}/${GITEA_ORG}/unifi-network-operator-controller:latest" make build-installer curl -X PUT \ -H "Authorization: token $GITEA_TOKEN" \ -H "Content-Type: application/x-yaml" \ --data-binary @./dist/install.yaml \ https://gitea.engen.priv.no/api/packages/klauvsteinen/generic/unifi-network-operator/latest/install.yaml + IMB="${GITEA_REGISTRY}/${GITEA_ORG}/unifi-network-operator-controller:$TAG" make build-installer curl -X PUT \ -H "Authorization: token $GITEA_TOKEN" \ -H "Content-Type: application/x-yaml" \