commit 67a95793ff7cadbdc7745de1dafc959b61217a86 parent b83a1efe409ecb03634dc6eb39e2bc4834ba5922 Author: dsp56300 <dsp56300@users.noreply.github.com> Date: Mon, 9 Dec 2024 21:59:09 +0100 use changelog for current version only Diffstat:
M | .github/workflows/release.yml | | | 5 | ++++- |
1 file changed, 4 insertions(+), 1 deletion(-)
diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml @@ -41,11 +41,14 @@ jobs: - name: Pack run: cpack --preset github-${{ runner.os }} + - name: Create Changelog + run: ${{github.workspace}}/bin/tools/commandlineGenerator -i ${{github.workspace}}/doc/changelog.txt -o ${{github.workspace}}/doc/changelog_split + - name: Release uses: softprops/action-gh-release@v2 with: token: ${{ secrets.GITHUB_TOKEN }} - body_path: ${{github.workspace}}/doc/changelog.txt + body_path: ${{github.workspace}}/doc/changelog_split/${{ github.event.inputs.version }}.txt draft: true prerelease: false name: ${{ github.event.inputs.version }}