From 2bf2fc37ebdcfbfb9ed2ede4b7284221681f6991 Mon Sep 17 00:00:00 2001 From: Andras Schmelczer Date: Sat, 6 Jun 2026 15:28:30 +0100 Subject: [PATCH] Flatten admin image name to andras/fizika-admin A nested name (andras/fizika/fizika-admin) contains a slash, which Forgejo's package web UI can't render (the detail page 404s though pulls work). Use a flat name to match the andras/ convention. Co-Authored-By: Claude Opus 4.8 (1M context) --- .forgejo/workflows/docker-publish.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.forgejo/workflows/docker-publish.yml b/.forgejo/workflows/docker-publish.yml index c76b35c..f60e570 100644 --- a/.forgejo/workflows/docker-publish.yml +++ b/.forgejo/workflows/docker-publish.yml @@ -20,6 +20,6 @@ jobs: uses: http://forgejo:3000/andras/ci-actions/docker-publish@main with: context: ./backend - image-suffix: /fizika-admin + image-suffix: -admin push: ${{ github.event_name != 'pull_request' }} token: ${{ secrets.FORGEJO_PACKAGE_TOKEN }}