fix: Added missing docker coordinates
Some checks failed
ci / ci (push) Failing after 0s

This commit is contained in:
Patrick Sy 2026-02-17 16:08:25 +01:00
parent 937e5b814b
commit 8e095e2fcd
Signed by: Patrick.Sy
GPG key ID: DDDC8EC51823195E

View file

@ -31,9 +31,17 @@ jobs:
with:
install-only: true
- name: Sanitize Docker credentials
run: |
echo "registry=${{ forgejo.server_url#https:// }}" >> "$GITHUB_OUTPUT"
echo "org=$(echo '${{ forgejo.repository_owner }}' | tr '[:upper:]' '[:lower:]')" >> "$GITHUB_OUTPUT"
id: sanitize_credentials
- name: GoReleaser Check
run: |
unset GITHUB_TOKEN
goreleaser release --snapshot --skip=publish --clean
env:
GORELEASER_CURRENT_TAG: v0.0.0
DOCKER_REGISTRY: ${{ steps.sanitize_credentials.outputs.registry }}
DOCKER_ORG: ${{ steps.sanitize_credentials.outputs.org }}