From 8932696709e1e916aed1d7263fd6be842548cd2e Mon Sep 17 00:00:00 2001 From: Elewyn Date: Thu, 30 Apr 2026 15:54:16 +0200 Subject: [PATCH] fix: remplace actions/checkout par git clone natif (pas de node.js) --- .forgejo/workflows/deploy.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.forgejo/workflows/deploy.yml b/.forgejo/workflows/deploy.yml index a7b16f9..457c67f 100644 --- a/.forgejo/workflows/deploy.yml +++ b/.forgejo/workflows/deploy.yml @@ -9,7 +9,9 @@ jobs: runs-on: self-hosted steps: - name: Checkout - uses: actions/checkout@v4 + run: | + git clone --depth 1 --branch ${{ github.ref_name }} \ + ${{ github.server_url }}/${{ github.repository }}.git . - name: Set deployment path run: |