From 617f8df87835e6128995b70ea0324019d213ce27 Mon Sep 17 00:00:00 2001 From: jj Date: Mon, 25 Aug 2025 11:14:14 +0000 Subject: [PATCH] ci/release: use softprops action instead of deprecated one --- .github/workflows/release-and-tag.yml | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/.github/workflows/release-and-tag.yml b/.github/workflows/release-and-tag.yml index a9207085..3b42b345 100644 --- a/.github/workflows/release-and-tag.yml +++ b/.github/workflows/release-and-tag.yml @@ -43,12 +43,10 @@ jobs: - name: Create Release if: steps.info.outputs.version id: create_release - uses: actions/create-release@latest + uses: softprops/action-gh-release@de2c0eb89ae2a093876385947365aca7b0e5f844 env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} with: tag_name: ${{ steps.info.outputs.version }} - release_name: ${{ steps.info.outputs.version }} + name: ${{ steps.info.outputs.version }} body_path: body.md - draft: false - prerelease: false