From cdf661734f903291a2c9533efc898266db3d4944 Mon Sep 17 00:00:00 2001 From: titor Date: Tue, 7 Apr 2026 08:15:35 +0800 Subject: [PATCH] fix: install git before clone --- .gitea/workflows/release.yaml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.gitea/workflows/release.yaml b/.gitea/workflows/release.yaml index ca1c7ae..bd77e7f 100644 --- a/.gitea/workflows/release.yaml +++ b/.gitea/workflows/release.yaml @@ -14,7 +14,9 @@ jobs: GOPROXY: "https://mirrors.aliyun.com/goproxy/,direct" steps: - name: Checkout - run: git clone https://hub.gaomia.site/titor/yoyo.git . + run: | + apk add git + git clone https://hub.gaomia.site/titor/yoyo.git . - name: Build run: |