From d1ee359f9f9ca0e8274e26f33c1aea5dade40705 Mon Sep 17 00:00:00 2001 From: Aydent Date: Sun, 1 Feb 2026 22:23:01 +0100 Subject: [PATCH] Revert: Switch back to Registry Push strategy (Gitea timeout increased) --- .gitea/workflows/deploy.yml | 18 ++++++++---------- 1 file changed, 8 insertions(+), 10 deletions(-) diff --git a/.gitea/workflows/deploy.yml b/.gitea/workflows/deploy.yml index 095c3fb..03066da 100644 --- a/.gitea/workflows/deploy.yml +++ b/.gitea/workflows/deploy.yml @@ -12,18 +12,16 @@ jobs: - name: Checkout code uses: actions/checkout@v3 + - name: Login to Gitea Container Registry + uses: docker/login-action@v2 + with: + registry: gitea.lemarechal.eu + username: ${{ gitea.actor }} + password: ${{ secrets.PACKAGES_TOKEN }} + - name: Build and push Docker image uses: docker/build-push-action@v4 with: context: . - push: false - load: true + push: true tags: gitea.lemarechal.eu/aydent/clawdbot:latest - - - name: Restart Service - run: | - # Debug: List networks to confirm existence - docker network ls - # The image is now in the local docker daemon (Host) thanks to the shared socket - docker compose up -d --force-recreate clawdbot - docker image prune -f