From 2466972389eef0149fc48cdd110aa8daff8c677d Mon Sep 17 00:00:00 2001 From: Nathan Date: Tue, 2 Jun 2026 12:35:06 -0400 Subject: [PATCH] feat: add git installation step to auto-deploy workflow --- .gitea/workflows/auto-deploy.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.gitea/workflows/auto-deploy.yml b/.gitea/workflows/auto-deploy.yml index 1e578af..135c05c 100644 --- a/.gitea/workflows/auto-deploy.yml +++ b/.gitea/workflows/auto-deploy.yml @@ -9,6 +9,8 @@ jobs: deploy: runs-on: ubuntu-latest steps: + - name: Install git + run: apt-get update && apt-get install -y git curl - name: Checkout repository uses: actions/checkout@v4 with: