Skip to content

Commit

Permalink
Reenable changelog generator in CI/CD
Browse files Browse the repository at this point in the history
  • Loading branch information
rhandberg committed Jun 29, 2021
1 parent 28a134e commit 0e3798a
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -171,6 +171,12 @@ jobs:
id: vars
run: echo ::set-output name=tag::${GITHUB_REF#refs/tags/v}

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

- name: Create Release
id: create_release
uses: actions/create-release@v1
Expand All @@ -181,4 +187,8 @@ jobs:
release_name: Version ${{ steps.vars.outputs.tag }}
body: |
Version ${{ steps.vars.outputs.tag }}
Changelog
---------
${{ steps.changelog.outputs.changelog }}
draft: true

0 comments on commit 0e3798a

Please sign in to comment.