From 49da62c8e200068e606c6c32907ea0dce3193131 Mon Sep 17 00:00:00 2001 From: aayalew Date: Fri, 10 Jul 2026 18:15:28 +0300 Subject: [PATCH] fix(demo): tag image as owner/repo for auto package link Gitea only auto-links packages when the image name matches the repo. Co-authored-by: Cursor --- .gitea/workflows/build.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.gitea/workflows/build.yaml b/.gitea/workflows/build.yaml index ad7d5e4..73b81bd 100644 --- a/.gitea/workflows/build.yaml +++ b/.gitea/workflows/build.yaml @@ -7,7 +7,6 @@ on: env: # Hostname only (no scheme) — Gitea container registry on this demo stack. REGISTRY: gitea-dev.alertaware.com - IMAGE: demo # act_runner DinD listens on the job host network (see runner config.yaml). DOCKER_HOST: tcp://127.0.0.1:2375 @@ -31,9 +30,10 @@ jobs: username: ${{ github.repository_owner }} password: ${{ secrets.REGISTRY_TOKEN }} + # Tag as owner/repo so Gitea auto-links the package to this repository. - name: Build and push uses: docker/build-push-action@v6 with: context: . push: true - tags: ${{ env.REGISTRY }}/${{ github.repository_owner }}/${{ env.IMAGE }}:${{ steps.meta.outputs.tag }} + tags: ${{ env.REGISTRY }}/${{ github.repository }}:${{ steps.meta.outputs.tag }}