Partially automate release changelog

This commit is contained in:
Jikoo
2021-03-18 16:38:41 -04:00
parent 3ba82683ec
commit 1d5a836fd0
2 changed files with 71 additions and 0 deletions

View File

@@ -60,6 +60,9 @@ jobs:
- name: Download Artifacts
uses: actions/download-artifact@v2
- name: Generate changelog
run: . scripts/generate_changelog.sh
- name: Create Release
id: create-release
uses: actions/create-release@v1
@@ -68,6 +71,7 @@ jobs:
with:
tag_name: ${{ github.ref }}
release_name: Release ${{ github.ref }}
body: ${{ env.GENERATED_CHANGELOG }}
draft: true
prerelease: false