From 172e66bf18fb3d41df753ad8bfd298fd27e32f73 Mon Sep 17 00:00:00 2001 From: liyp Date: Sat, 12 Apr 2025 17:33:56 +0800 Subject: [PATCH] =?UTF-8?q?Release=20v1.4.7=20=E6=B5=8B=E8=AF=95=E7=94=9F?= =?UTF-8?q?=E6=88=90readme.md?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .gitea/workflows/AutoRelease.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.gitea/workflows/AutoRelease.yaml b/.gitea/workflows/AutoRelease.yaml index ca5fb4f..71c0579 100644 --- a/.gitea/workflows/AutoRelease.yaml +++ b/.gitea/workflows/AutoRelease.yaml @@ -217,7 +217,7 @@ jobs: # 获取提交记录 COMMITS=$(git log --pretty=format:"- %ad - Commit: %s (%h)" --date=iso-strict) # 获取版本发布记录 - RELEASES=$(curl -s "https:///api/v1/repos/${{ github.repository }}/releases" | jq -r '.[] | "- \(.published_at) - Release: \(.name) (\(.tag_name))"') + RELEASES=$(curl -s "https://${{ github.server_url }}/api/v1/repos/${{ github.repository }}/releases" | jq -r '.[] | "- \(.published_at) - Release: \(.name) (\(.tag_name))"') # 合并并按时间排序 COMBINED_TIMELINE=$(echo -e "$COMMITS\n$RELEASES" | sort -r) echo "::set-output name=timeline::$COMBINED_TIMELINE"