From 7341c14f9c1a57386244f8856f5c152293bde342 Mon Sep 17 00:00:00 2001 From: cwilvx Date: Sat, 30 Aug 2025 17:12:03 +0300 Subject: [PATCH] change release action --- .github/workflows/build.yml | 18 ++++++++---------- 1 file changed, 8 insertions(+), 10 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index f4c4f0ee..56460d2e 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -348,17 +348,15 @@ jobs: merge-multiple: true - name: Upload artifacts to GitHub Release - uses: softprops/action-gh-release@v2 + uses: ncipollo/release-action@v1 with: + allowUpdates: true draft: true name: ${{ format('v{0}',github.event.inputs.tag) }} - body_path: .github/changelog.md - fail_on_unmatched_files: true - target_commitish: ${{ github.sha }} - make_latest: ${{github.event.inputs.is_latest == 'true' }} - files: | - client.zip - wheels/** - pyinstaller/** - appimage/** + tag: ${{ format('v{0}',github.event.inputs.tag) }} + bodyFile: .github/changelog.md + artifactErrorsFailBuild: true + commit: ${{ github.sha }} + makeLatest: ${{github.event.inputs.is_latest == 'true'}} + artifacts: "client.zip,wheels/*,pyinstaller/*,appimage/*" token: ${{ secrets.GITHUB_TOKEN }}