.gitea/workflows/docker-build.yml aktualisiert
Some checks failed
Build and Push Docker Container / build-and-push (push) Failing after 3s

This commit is contained in:
2025-03-26 10:59:49 +00:00
parent ea6240e7b9
commit 38606fbc06

View File

@@ -24,6 +24,10 @@ jobs:
- name: Clone Repository
uses: actions/checkout@v3
- name: Build and Push Docker Image
run: |
docker buildx build --platform linux/amd64,linux/arm64 --push -t git.kohout-dev.de/rezepte/rezepte:latest .
- name: Build and push Docker image
uses: https://github.com/docker/build-push-action@v5
with:
context: .
file: ./Dockerfile
push: true
tags: "git.kohout-dev.de/rezepte/rezepte:${{gitea.sha}},git.kohout-dev.de/rezepte/rezepte:latest"