From 39362768a0bda66c7d99aa32cbced84a159ac7ae Mon Sep 17 00:00:00 2001 From: k4yt3x Date: Wed, 22 Mar 2023 01:05:44 +0000 Subject: [PATCH] replaced actions/create-release with softprops/action-gh-release --- .github/workflows/release.yml | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 052f7f39..302f2c38 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -34,12 +34,10 @@ jobs: steps: - name: Create release id: create_release - uses: actions/create-release@v1 - env: - GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} + uses: softprops/action-gh-release@v1 with: tag_name: ${{ needs.setup.outputs.VERSION }} - release_name: Release ${{ needs.setup.outputs.VERSION }} + name: Release ${{ needs.setup.outputs.VERSION }} draft: true prerelease: false