From 0ad8796266da80f8fc7a5bfe6549fa284dba54b6 Mon Sep 17 00:00:00 2001 From: Guilherme Branco Stracini Date: Fri, 17 Oct 2025 18:22:36 +0100 Subject: [PATCH 1/2] Update release steps in CI workflow --- .github/workflows/ci.yml | 16 +++++++++++++++- 1 file changed, 15 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index e2110cb4..090e13f9 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -81,7 +81,7 @@ jobs: id: gitversion uses: gittools/actions/gitversion/execute@v4 - - name: Create Release + - name: Create Release (tag) uses: ncipollo/release-action@v1.20.0 with: allowUpdates: false @@ -94,3 +94,17 @@ jobs: body: Release ${{ steps.gitversion.outputs.semVer }} of ${{ github.event.repository.name }} + + - name: Create Release (latest) + uses: ncipollo/release-action@v1.20.0 + with: + allowUpdates: true + skipIfReleaseExists: false + draft: false + makeLatest: false + tag: latest + name: Release v${{ steps.gitversion.outputs.semVer }} + generateReleaseNotes: true + body: + Release ${{ steps.gitversion.outputs.semVer }} of ${{ + github.event.repository.name }} From 0f2e369bcb7140055e3073ecb882310d2fd0c86d Mon Sep 17 00:00:00 2001 From: Guilherme Branco Stracini Date: Fri, 17 Oct 2025 18:23:29 +0100 Subject: [PATCH 2/2] Fix formatting in release notes body --- .github/workflows/ci.yml | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 090e13f9..9c1d1b8e 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -92,8 +92,7 @@ jobs: name: Release v${{ steps.gitversion.outputs.semVer }} generateReleaseNotes: true body: - Release ${{ steps.gitversion.outputs.semVer }} of ${{ - github.event.repository.name }} + Release ${{ steps.gitversion.outputs.semVer }} of ${{ github.event.repository.name }} - name: Create Release (latest) uses: ncipollo/release-action@v1.20.0 @@ -106,5 +105,4 @@ jobs: name: Release v${{ steps.gitversion.outputs.semVer }} generateReleaseNotes: true body: - Release ${{ steps.gitversion.outputs.semVer }} of ${{ - github.event.repository.name }} + Release ${{ steps.gitversion.outputs.semVer }} of ${{ github.event.repository.name }}