Skip to content

Commit

Permalink
Add changelog to release notes
Browse files Browse the repository at this point in the history
  • Loading branch information
PhilippvK committed Sep 5, 2020
1 parent 0c27878 commit f641fb2
Showing 1 changed file with 8 additions and 4 deletions.
12 changes: 8 additions & 4 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,11 @@ jobs:
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Generate changelog
id: changelog
uses: metcalfc/[email protected]
with:
myToken: ${{ secrets.GITHUB_TOKEN }}
- name: Set up JDK 1.8
uses: actions/setup-java@v1
with:
Expand All @@ -32,9 +37,8 @@ jobs:
tag_name: ${{ github.ref }}
release_name: Release ${{ github.ref }}
body: |
Changes in this Release
- First Change
- Second Change
Changes in this Release:
${{ steps.changelog.outputs.changelog }}
draft: true
prerelease: false
- name: Upload Tracks
Expand Down Expand Up @@ -96,4 +100,4 @@ jobs:
upload_url: ${{ steps.create_release.outputs.upload_url }}
asset_path: client/target/client-${{ env.VERSION }}.dmg
asset_name: client-${{ env.VERSION }}.dmg
asset_content_type: application/octet-stream
asset_content_type: application/octet-stream

0 comments on commit f641fb2

Please sign in to comment.