Release v1.4.8 测试生成readme.md
This commit is contained in:
parent
172e66bf18
commit
ddb0a5793d
@ -216,8 +216,15 @@ jobs:
|
||||
run: |
|
||||
# 获取提交记录
|
||||
COMMITS=$(git log --pretty=format:"- %ad - Commit: %s (%h)" --date=iso-strict)
|
||||
|
||||
# 获取版本发布记录
|
||||
RELEASES=$(curl -s "https://${{ github.server_url }}/api/v1/repos/${{ github.repository }}/releases" | jq -r '.[] | "- \(.published_at) - Release: \(.name) (\(.tag_name))"')
|
||||
TAGS=$(git tag -l)
|
||||
RELEASES=""
|
||||
for tag in $TAGS; do
|
||||
TAG_TIME=$(git show -s --format=%ai $tag)
|
||||
RELEASES="${RELEASES}- $TAG_TIME - Release: $tag\n"
|
||||
done
|
||||
|
||||
# 合并并按时间排序
|
||||
COMBINED_TIMELINE=$(echo -e "$COMMITS\n$RELEASES" | sort -r)
|
||||
echo "::set-output name=timeline::$COMBINED_TIMELINE"
|
||||
|
Loading…
Reference in New Issue
Block a user