From 3dbdbe18b09abc3156eb377ea607c6bf090d164c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E2=80=9CNaeel=E2=80=9D?= Date: Mon, 29 Jun 2026 10:51:46 +0400 Subject: [PATCH] fix: use git clone instead of actions/checkout (no node on VM) --- .gitea/workflows/deploy.yaml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.gitea/workflows/deploy.yaml b/.gitea/workflows/deploy.yaml index dd13d3e..0983e5f 100644 --- a/.gitea/workflows/deploy.yaml +++ b/.gitea/workflows/deploy.yaml @@ -10,7 +10,9 @@ jobs: runs-on: linux_amd64 steps: - name: Checkout - uses: actions/checkout@v4 + run: | + git clone --depth 1 "https://x-access-token:${GITEA_TOKEN}@gitea.services.ngcloud.ru/${{ gitea.repository }}.git" . + git checkout ${{ gitea.sha }} - name: Python syntax check run: |