From 0b5ba9557e4bac7d86bcf30b50832b8201d8bdb5 Mon Sep 17 00:00:00 2001 From: robojerk Date: Sun, 7 Sep 2025 17:36:43 -0700 Subject: [PATCH] Fix Debian container: install basic tools before checkout - Add step to install git, curl, wget, ca-certificates in Debian container - This fixes the 'git: not found' error from run #20 - Debian container needs basic tools installed before checkout step - Install tools before attempting to clone repository The Debian container is minimal and doesn't include git by default, causing the checkout step to fail with 'command not found' error. --- .forgejo/workflows/ci.yml | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/.forgejo/workflows/ci.yml b/.forgejo/workflows/ci.yml index 92c3560..0e57198 100644 --- a/.forgejo/workflows/ci.yml +++ b/.forgejo/workflows/ci.yml @@ -16,6 +16,13 @@ jobs: image: debian:trixie steps: + - name: Install basic tools + run: | + echo "Installing basic tools in Debian container..." + apt-get update + apt-get install -y git curl wget ca-certificates + echo "Basic tools installed successfully" + - name: Checkout code run: | echo "Cloning repository..."