Update .gitea/workflows/build.yaml
Build & Push Docker Image / build (push) Failing after 54s

This commit is contained in:
2026-07-31 11:46:04 +00:00
parent 4c48e7b9f6
commit 3a1eb1dffa
+1 -1
View File
@@ -28,7 +28,7 @@ jobs:
run: |
SHA=$(git rev-parse --short HEAD)
IMAGE="git.kubebase.de/${{ gitea.repository }}"
docker build --no-cache -t "${IMAGE}:sha-${SHA}" -t "${IMAGE}:latest" .
docker build -t "${IMAGE}:sha-${SHA}" -t "${IMAGE}:latest" .
docker push "${IMAGE}:sha-${SHA}"
docker push "${IMAGE}:latest"