Skip to content

Commit

Permalink
fix(action): generate release notes in release
Browse files Browse the repository at this point in the history
  • Loading branch information
with-shrey committed Feb 27, 2024
1 parent 3a0843c commit f8e58a0
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions .github/workflows/create-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,14 +16,16 @@ jobs:
echo "VERSION=$(echo ${{ github.ref }} | sed -e 's/^refs\/tags\///')" >> $GITHUB_ENV
- name: Create release
id: create_release
uses: actions/create-release@v1
uses: softprops/action-gh-release@v1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
token: ${{ secrets.GITHUB_TOKEN }}
tag_name: ${{ github.ref }}
release_name: Release ${{ env.VERSION }}
name: Release ${{ env.VERSION }}
draft: false
prerelease: false
generate_release_notes: true
- name: Sync core repo dependency version
uses: peter-evans/repository-dispatch@v2
with:
Expand Down

0 comments on commit f8e58a0

Please sign in to comment.