From 2fce0ab9faf337809c05d56c9dd274456e353b23 Mon Sep 17 00:00:00 2001 From: Jefino Date: Thu, 6 Jun 2024 14:16:28 +0530 Subject: [PATCH] Update release --- .github/workflows/Build.yml | 14 ++++++-------- 1 file changed, 6 insertions(+), 8 deletions(-) diff --git a/.github/workflows/Build.yml b/.github/workflows/Build.yml index eccb2c8..934babd 100644 --- a/.github/workflows/Build.yml +++ b/.github/workflows/Build.yml @@ -57,13 +57,11 @@ jobs: path: fastbootflasher-${{ steps.version.outputs.version }}.zip - name: Create release - uses: actions/create-release@v1 id: create_release + uses: ncipollo/release-action@v1 with: - draft: false - prerelease: false - release_name: Fastboot Flasher ${{ steps.version.outputs.version }} - tag_name: ${{ steps.version.outputs.version }} - body_path: CHANGELOG.md - env: - GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} + artifacts: fastbootflasher-${{ steps.version.outputs.version }}.zip + tag: "${{ steps.version.outputs.version }}" + name: "Fastboot Flasher ${{ steps.version.outputs.version }}" + token: ${{ secrets.GITHUB_TOKEN }} + bodyFile: CHANGELOG.md