From 5f8a275c72c087aee1e1eea87bc5cfc83a36c079 Mon Sep 17 00:00:00 2001 From: Patrick Sy Date: Tue, 17 Feb 2026 16:08:25 +0100 Subject: [PATCH] fix: Added missing docker coordinates --- .github/workflows/ci.yaml | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index 1af11d6..9692a45 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -31,9 +31,17 @@ jobs: with: install-only: true + - name: Sanitize Docker registry URL + run: | + REGISTRY="${{ forgejo.server_url }}" + echo "registry=${REGISTRY#https://}" >> "$GITHUB_OUTPUTS" + id: sanitize_registry + - name: GoReleaser Check run: | unset GITHUB_TOKEN goreleaser release --snapshot --skip=publish --clean env: GORELEASER_CURRENT_TAG: v0.0.0 + DOCKER_REGISTRY: ${{ steps.sanitize_registry.outputs.registry }} + DOCKER_ORG: ${{ forgejo.repository_owner }}