We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 07037d4 commit 8d25cb5Copy full SHA for 8d25cb5
1 file changed
.github/workflows/build.yml
@@ -10,6 +10,10 @@ jobs:
10
contents: write
11
steps:
12
- uses: actions/checkout@v4
13
+ - name: get date
14
+ id: get-date
15
+ run: echo "timestamp=$(date -u '+%Y-%m-%d %H:%M:%S UTC')" >> $GITHUB_OUTPUT
16
+
17
- name: Create release archive
18
run: zip -r out/OIAPI.zip src/
19
@@ -46,7 +50,16 @@ jobs:
46
50
tag: "V${{ env.CURRENT_VER }}"
47
51
name: OIAPI V${{ env.CURRENT_VER }}
48
52
body: |
49
- # 更新内容
53
+ ## 🚀 版本更新日志 V${{ env.CURRENT_VER }}
54
+ **提交信息**
55
+ ```plaintext
56
+ ${{ format('{0}', github.event.head_commit.message) }}
57
+ ```
58
59
+ ### 构建详情
60
+ - 提交者: ${{ github.actor }}
61
+ - 提交SHA: [${{ github.sha }}](https://github.com/${{ github.repository }}/commit/${{ github.sha }})
62
+ - 触发时间: ${{ steps.get-date.outputs.timestamp }}
63
artifacts: OIAPI.zip
64
allowUpdates: true
65
removeArtifacts: true
0 commit comments