From a0538915e76f42c6b4f543820d92ac6b515d1fcd Mon Sep 17 00:00:00 2001 From: funbiscuit Date: Sat, 9 Oct 2021 20:17:04 +0300 Subject: [PATCH] [CI] Use different action for releasing --- .github/workflows/release.yaml | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml index 6774f1a..1b85b06 100644 --- a/.github/workflows/release.yaml +++ b/.github/workflows/release.yaml @@ -1,4 +1,4 @@ -name: Build +name: Release on: push: tags: @@ -14,10 +14,9 @@ jobs: id: version - name: Release - uses: actions/create-release@v1 + uses: softprops/action-gh-release@v1 with: token: ${{ secrets.RELEASE_ACCESS_TOKEN }} + name: SpaceDisplay ${{ steps.version.outputs.version }} draft: false prerelease: true - release_name: SpaceDisplay ${{ steps.version.outputs.version }} - tag_name: ${{ github.ref }}