From 4bce4445e3774b52aae07190bb99e43983a37f54 Mon Sep 17 00:00:00 2001 From: arthurkehrwald <50906979+arthurkehrwald@users.noreply.github.com> Date: Mon, 24 Feb 2025 14:54:01 +0100 Subject: [PATCH] Use softprops/action-gh-release instead of action/create-release --- .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 52c2ee5b..6812649f 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -33,14 +33,13 @@ jobs: env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} - name: Create Release - uses: actions/create-release@v1 + uses: softprops/action-gh-release@v2 with: tag_name: ${{ steps.nextVersion.outputs.nextTag }} - release_name: ${{ steps.nextVersion.outputs.nextTag }} + name: ${{ steps.nextVersion.outputs.nextTag }} prerelease: ${{ steps.nextVersion.outputs.isPrerelease }} - commitish: ${{ steps.commit.outputs.commitish }} - env: - GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} + target_commitish: ${{ steps.commit.outputs.commitish }} + token: ${{ secrets.GITHUB_TOKEN }} dispatch: runs-on: ubuntu-latest