From 31c53eff33b65835df954c6aecb8495754c02ec0 Mon Sep 17 00:00:00 2001 From: Alessio Dal Santo Date: Sat, 24 Jan 2026 13:43:22 +0100 Subject: [PATCH] [Fix] Rimosso checkout manuale Windows MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - Gitea Actions clona automaticamente il repository - Non serve checkout manuale con git - Il codice è già presente nella working directory - Fix: git non riconosciuto su runner Windows --- .gitea/workflows/docker-build.yml | 6 ------ 1 file changed, 6 deletions(-) diff --git a/.gitea/workflows/docker-build.yml b/.gitea/workflows/docker-build.yml index 5a101cd..f936810 100644 --- a/.gitea/workflows/docker-build.yml +++ b/.gitea/workflows/docker-build.yml @@ -99,12 +99,6 @@ jobs: packages: write steps: - - name: Checkout repository (manual git) - run: | - git config --global core.autocrlf false - git clone --depth 1 --branch ${{ github.ref_name }} https://github.com/${{ github.repository }} . - shell: cmd - - name: Log in to Gitea Container Registry run: echo ${{ secrets.REGISTRY_TOKEN }} | docker login ${{ env.REGISTRY }} -u alessio --password-stdin shell: cmd