diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml index 0de3ba6..16badd9 100644 --- a/.github/workflows/release.yaml +++ b/.github/workflows/release.yaml @@ -86,14 +86,22 @@ jobs: git tag -a "api/${{ env.version }}" -m "Release ${{ env.version }}" git push origin "api/${{ env.version }}" + + - name: Conventional Changelog Action + id: changelog + uses: TriPSs/conventional-changelog-action@v5 + with: + github-token: ${{ secrets.github_token }} + output-file: "false" + - name: Create GitHub release if: ${{ env.SKIP != 'true' }} uses: softprops/action-gh-release@v2 with: tag_name: ${{ env.version }} - name: Release ${{ env.version }} - body: "Automated release for version ${{ env.version }}" - draft: false + name: ${{ steps.changelog.outputs.tag }} + body: ${{ steps.changelog.outputs.clean_changelog }} + draft: true prerelease: false env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} diff --git a/VERSION b/VERSION index 3da5289..3c19404 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -v0.26.5-dev \ No newline at end of file +v0.26.6 \ No newline at end of file