fix: avoid docker hub lookup

This commit is contained in:
Alpha Nerd 2026-04-08 10:21:22 +02:00
parent 88df31c390
commit 56b214ef46
Signed by: alpha-nerd
SSH key fingerprint: SHA256:QkkAgVoYi9TQ0UKPkiKSfnerZy2h4qhi3SVPXJmBN+M

View file

@ -18,7 +18,7 @@ on:
env:
REGISTRY: bitfreedom.net
IMAGE_NAME: ${{ github.repository }}
CACHE_REF: ${{ env.REGISTRY }}/${{ github.repository }}:semantic-buildcache-${{ matrix.arch }}
DOCKER_BUILD_SUMMARY: "false"
jobs:
@ -88,8 +88,8 @@ jobs:
build-args: |
SEMANTIC_CACHE=true
tags: ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}:semantic-platform-${{ matrix.arch }}
cache-from: type=registry,ref=${{ env.CACHE_REF }}
cache-to: type=registry,ref=${{ env.CACHE_REF }},mode=max
cache-from: type=registry,ref=${{ env.REGISTRY }}/${{ github.repository }}:semantic-buildcache-${{ matrix.arch }}
cache-to: type=registry,ref=${{ env.REGISTRY }}/${{ github.repository }}:semantic-buildcache-${{ matrix.arch }},mode=max
merge:
runs-on: docker-amd64