Skip to content

Commit

Permalink
Fix release action
Browse files Browse the repository at this point in the history
  • Loading branch information
penguineer committed Apr 8, 2022
1 parent c746371 commit 64831ab
Showing 1 changed file with 4 additions and 5 deletions.
9 changes: 4 additions & 5 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,17 +14,16 @@ jobs:
uses: actions/checkout@v1
- name: "✏️ Generate release changelog"
id: generate-release-changelog
uses: ./
uses: heinrichreimer/[email protected]
with:
token: ${{ secrets.CHANGELOG_TOKEN }}
onlyLastTag: "true"
onlyLastTag: "false" # set to true later (buggy with only one tag)
stripHeaders: "true"
stripGeneratorNotice: "true"
- name: "🚀 Create GitHub release"
uses: actions/create-release@v1
uses: softprops/action-gh-release@v1
env:
GITHUB_TOKEN: ${{ secrets.CHANGELOG_TOKEN }}
with:
tag_name: ${{ github.ref }}
release_name: Release ${{ github.ref }}
body: ${{ steps.generate-release-changelog.outputs.changelog }}
draft: True

0 comments on commit 64831ab

Please sign in to comment.