💥 Fix: korrigierte Path für Templates / main.py (relativer Pfad)
docker-build-and-push / build (push) Successful in 18s

This commit is contained in:
KI-Sparringpartner
2026-08-03 14:22:11 +02:00
parent f0bd062479
commit 3a224aec9e
5 changed files with 95 additions and 2 deletions
+28
View File
@@ -0,0 +1,28 @@
name: docker-build-and-push
on:
push:
branches: ["main", "master"]
workflow_dispatch:
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Login registry
run: |
echo "${{ secrets.REGISTRY_PASSWORD }}" | docker login git.carabella.ch \
-u "${{ secrets.REGISTRY_USER }}" --password-stdin
- name: Build
run: |
docker build -t git.carabella.ch/putschgi/gitea-sync-ai:${{ github.ref_name }} .
- name: Push
run: |
docker push git.carabella.ch/putschgi/gitea-sync-ai:${{ github.ref_name }}
- name: Tag latest
run: |
docker tag git.carabella.ch/putschgi/gitea-sync-ai:${{ github.ref_name }} \
git.carabella.ch/putschgi/gitea-sync-ai:latest
- name: Push latest
run: |
docker push git.carabella.ch/putschgi/gitea-sync-ai:latest