We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c600d62 commit db13e63Copy full SHA for db13e63
.github/workflows/release.yml
@@ -11,16 +11,10 @@ jobs:
11
runs-on: ubuntu-24.04
12
steps:
13
- uses: actions/checkout@v4
14
+ - uses: softprops/action-gh-release@v2
15
+ if: github.ref_type == 'tag'
16
with:
- fetch-depth: 0
- - uses: heinrichreimer/github-changelog-generator-action@v2
17
- id: changelog
18
- with:
19
- token: ${{ secrets.GITHUB_TOKEN }}
20
- - uses: ncipollo/release-action@v1
21
22
23
- allowUpdates: true
+ generate_release_notes: true
24
prerelease: ${{ contains(github.ref, '-rc') }}
25
- body: |
26
- ${{ steps.changelog.outputs.changelog }}
+ env:
+ GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
0 commit comments