From a1bd7f080c28003afc7c443a01ca66daffb2c842 Mon Sep 17 00:00:00 2001 From: Kevin Renskers Date: Wed, 4 Dec 2024 16:01:11 +0100 Subject: [PATCH] chore: Update github action to create new releases --- .github/workflows/release.yml | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 868dd79..5d54cde 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -11,7 +11,7 @@ jobs: steps: - name: Checkout - uses: actions/checkout@v2 + uses: actions/checkout@latest - name: Create changelog text id: changelog @@ -21,10 +21,9 @@ jobs: exclude_types: other,doc,chore,build - name: Create release - uses: actions/create-release@latest - env: - GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} + uses: softprops/action-gh-release@v2 with: tag_name: ${{ github.ref }} - release_name: Release ${{ github.ref }} + name: Release ${{ github.ref }} body: ${{ steps.changelog.outputs.changes }} + token: ${{ secrets.GITHUB_TOKEN }}