Skip to content

Commit 4208aa3

Browse files
committed
ci: set release body and upload to wiki in release action
1 parent 07265bc commit 4208aa3

1 file changed

Lines changed: 6 additions & 1 deletion

File tree

.github/workflows/release.yml

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,11 +30,16 @@ jobs:
3030
message: 'chore: v${{ github.event.inputs.version_name }} release'
3131
tag: 'v${{ github.event.inputs.version_name }} --force'
3232

33+
- name: Upload Documentation to Wiki
34+
uses: spenserblack/actions-wiki@v0.3.0
35+
with:
36+
path: docgen/wiki
37+
3338
- name: Create github release
3439
uses: softprops/action-gh-release@v2
3540
with:
3641
name: 'v${{ github.event.inputs.version_name }}'
37-
body: ''
42+
body: 'See [CHANGELOG.md](https://github.com/saecki/crates.nvim/blob/main/CHANGELOG.md)'
3843
tag_name: 'v${{ github.event.inputs.version_name }}'
3944
prerelease: false
4045
draft: true

0 commit comments

Comments
 (0)