Skip to content

Commit

Permalink
build: enable changelog generator for next release
Browse files Browse the repository at this point in the history
  • Loading branch information
joshiste committed Feb 22, 2022
1 parent 3c07956 commit deb44d8
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions .github/workflows/release-to-maven-central.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,11 +32,11 @@ jobs:
MAVEN_GPG_PASSPHRASE: ${{ secrets.MAVEN_GPG_PRIVATE_KEY_PASSWORD }}
run: mvn -B deploy -Prelease -D"revision=${{ github.event.inputs.releaseversion }}"

# - name: Generate changelog
# id: changelog
# uses: metcalfc/[email protected]
# with:
# myToken: ${{ secrets.GITHUB_TOKEN }}
- name: Generate changelog
id: changelog
uses: metcalfc/[email protected]
with:
myToken: ${{ secrets.GITHUB_TOKEN }}

- name: Create GitHub Release
uses: actions/create-release@v1
Expand All @@ -45,8 +45,8 @@ jobs:
with:
tag_name: ${{ github.event.inputs.releaseversion }}
release_name: ${{ github.event.inputs.releaseversion }}
# body: |
# ### Changes
# ${{ steps.changelog.outputs.changelog }}
body: |
### Changes
${{ steps.changelog.outputs.changelog }}
draft: false
prerelease: false

0 comments on commit deb44d8

Please sign in to comment.