Skip to content

Commit

Permalink
Fork release-action and disable autogenerated release notes
Browse files Browse the repository at this point in the history
  • Loading branch information
TimoWilken committed Nov 29, 2023
1 parent f7c9e79 commit 99dc685
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,12 +28,15 @@ jobs:
TAG: ${{ github.event.inputs.tag }}

- name: Tag and create release
uses: ncipollo/release-action@v1
uses: alisw/release-action@v1
with:
name: ${{ github.event.inputs.tag }}
# The tag is created from the given commit if it does not exist yet.
tag: ${{ github.event.inputs.tag }}
commit: ${{ steps.decide_release_branch.outputs.branch }}
draft: false
prerelease: false
generateReleaseNotes: true
# GitHub often chooses the wrong tag to compare against for
# generating release notes -- it'll generate a diff e.g. between
# v5-09-56-patches and master.
generateReleaseNotes: false

0 comments on commit 99dc685

Please sign in to comment.