Update .gitea/workflows/build.yaml
Some checks failed
Build and Push Docker Image / build (push) Failing after 1m16s

This commit is contained in:
simon_admin 2026-05-10 12:42:04 +00:00
parent e77bc6b3d1
commit 81c2d546c2

View File

@ -8,8 +8,6 @@ on:
jobs:
build:
# Wir ändern 'ubuntu-latest' auf ein spezifisches Image,
# das oft schon im Cache liegt oder leichter erreichbar ist.
runs-on: ubuntu-22.04
steps:
- name: Code auschecken
@ -18,7 +16,8 @@ jobs:
- name: Login in die Gitea Registry
uses: docker/login-action@v2
with:
registry: gitea.simonaltschaeffl.de
# Wir nutzen die interne Service-URL (Port 3000 für Gitea HTTP)
registry: gitea-http.gitea.svc.cluster.local:3000
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
@ -27,4 +26,5 @@ jobs:
with:
context: .
push: true
tags: gitea.simonaltschaeffl.de/simon_admin/homepage:latest
# Auch beim Taggen nutzen wir die interne URL
tags: gitea-http.gitea.svc.cluster.local:3000/simon_admin/homepage:latest