From 5409a4ace052be07eca879dbee5788532868cbe5 Mon Sep 17 00:00:00 2001 From: Daniel Tapia Date: Mon, 2 Jun 2025 23:58:08 +0100 Subject: [PATCH] set release action with correct settings --- .github/workflows/ci.yml | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 70a518c..27d61d0 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -147,10 +147,14 @@ jobs: git config --global user.name "github-actions[bot]" git config --global user.email "github-actions@github.com" - - name: Create Release uses: ncipollo/release-action@v1.12.0 with: allowUpdates: true draft: false makeLatest: true + name: ${{ needs.version.outputs.package-version }} + body: Changelog Contents + token: ${{ github.token }} + tag: ${{ needs.version.outputs.package-version }} + skipIfReleaseExists: true